From 18ca1fc67ccc7bf176287f7b2908a33a597ec67a Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Tue, 10 Nov 2020 12:01:44 +0100 Subject: Added more tests for cpp02/02 --- cpp02/ex00/Fixed.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'cpp02/ex00') diff --git a/cpp02/ex00/Fixed.cpp b/cpp02/ex00/Fixed.cpp index fc50102..091cb0b 100644 --- a/cpp02/ex00/Fixed.cpp +++ b/cpp02/ex00/Fixed.cpp @@ -6,14 +6,13 @@ /* By: charles +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/04/13 11:45:18 by charles #+# #+# */ -/* Updated: 2020/11/09 13:07:28 by cacharle ### ########.fr */ +/* Updated: 2020/11/10 09:50:15 by cacharle ### ########.fr */ /* */ /* ************************************************************************** */ #include "Fixed.hpp" -Fixed::Fixed() - : m_value(0) +Fixed::Fixed() : m_value(0) { std::cout << "Default constructor called" << std::endl; } -- cgit