From 9dd7a48967f99793b818f7362ac8e95717186774 Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Tue, 10 Nov 2020 09:26:04 +0100 Subject: Added more tests for cpp01/07 --- cpp02/ex01/Fixed.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cpp02/ex01/Fixed.hpp') diff --git a/cpp02/ex01/Fixed.hpp b/cpp02/ex01/Fixed.hpp index a262c59..1f768f6 100644 --- a/cpp02/ex01/Fixed.hpp +++ b/cpp02/ex01/Fixed.hpp @@ -6,7 +6,7 @@ /* By: charles +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/04/13 11:40:49 by charles #+# #+# */ -/* Updated: 2020/11/08 13:38:48 by charles ### ########.fr */ +/* Updated: 2020/11/09 13:11:15 by cacharle ### ########.fr */ /* */ /* ************************************************************************** */ @@ -22,7 +22,7 @@ public: Fixed(); Fixed(Fixed const& other); ~Fixed(); - void operator=(Fixed const& other); + Fixed& operator=(Fixed const& other); Fixed(const int from); Fixed(const float from); -- cgit