From b13cd117a7957f9d86ec2986b47349979325a854 Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Mon, 14 Dec 2020 11:18:40 +0100 Subject: Fixing nanf not recognized in cpp06/00, Fixing serialization size to 52 bytes --- cpp06/ex01/serialization.hpp | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) (limited to 'cpp06/ex01/serialization.hpp') diff --git a/cpp06/ex01/serialization.hpp b/cpp06/ex01/serialization.hpp index 36a5434..a04d476 100644 --- a/cpp06/ex01/serialization.hpp +++ b/cpp06/ex01/serialization.hpp @@ -6,7 +6,7 @@ /* By: charles +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/11/18 10:22:17 by charles #+# #+# */ -/* Updated: 2020/11/18 10:22:35 by charles ### ########.fr */ +/* Updated: 2020/12/14 11:10:42 by cacharle ### ########.fr */ /* */ /* ************************************************************************** */ @@ -15,18 +15,11 @@ # include -struct RawData -{ - char c1[8]; - int n; - char c2[8]; -}; - struct Data { std::string s1; int n; std::string s2; -}; +} __attribute__((packed)); #endif -- cgit