Mentions légales du service

Skip to content
Snippets Groups Projects
Commit c32775c3 authored by Olivier COULAUD's avatar Olivier COULAUD
Browse files

remove warnings with return type of getSize function in FTestCell class

parent 33701cb2
Branches
Tags
No related merge requests found
......@@ -16,6 +16,7 @@
#ifndef FTESTCELL_HPP
#define FTESTCELL_HPP
#include <cstddef>
#include "FBasicCell.hpp"
/**
......@@ -75,7 +76,7 @@ public:
buffer >> dataDown >> dataUp;
}
static int GetSize(){
static size_t GetSize(){
return sizeof(long long int)*2;
}
......
......@@ -13,6 +13,9 @@
// "http://www.cecill.info".
// "http://www.gnu.org/licenses".
// ===================================================================================
#
#include <cstddef>
#include "FUTester.hpp"
#include "../Src/Containers/FBufferReader.hpp"
......@@ -27,7 +30,7 @@ class TestBuffer : public FUTester<TestBuffer> {
void TestWriteRead(){
FBufferWriter writer;
const int BytesTested = (sizeof(int)+sizeof(char)+sizeof(double)+sizeof(float));
const int BytesTested = static_cast<int>(sizeof(int)+sizeof(char)+sizeof(double)+sizeof(float));
const int NbTest = 5;
for(int idxWrite = 0 ; idxWrite < NbTest ; ++idxWrite){
writer << idxWrite << char(idxWrite) << double(idxWrite) << float(idxWrite);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment