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/ex02/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cpp06/ex02/main.cpp') diff --git a/cpp06/ex02/main.cpp b/cpp06/ex02/main.cpp index 86cd78f..28614ca 100644 --- a/cpp06/ex02/main.cpp +++ b/cpp06/ex02/main.cpp @@ -6,7 +6,7 @@ /* By: charles +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/04/15 10:00:18 by charles #+# #+# */ -/* Updated: 2020/11/18 09:29:49 by charles ### ########.fr */ +/* Updated: 2020/12/14 11:17:03 by cacharle ### ########.fr */ /* */ /* ************************************************************************** */ @@ -114,10 +114,10 @@ int main() for (int i = 0; i < 10; i++) { Base *b = generate(); - std::cout << "---" << std::endl; identify_from_pointer(b); identify_from_reference(*b); delete b; + std::cout << "---" << std::endl; } return 0; -- cgit