Mentions légales du service

Skip to content
Snippets Groups Projects
Commit c0d0e124 authored by PIACIBELLO Cyrille's avatar PIACIBELLO Cyrille
Browse files
parents 1d56057c c32775c3
No related branches found
No related tags found
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