From aa3ecdd6346b40ab53bd04861ca42cd6de09ab38 Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Thu, 17 Dec 2020 14:15:34 +0100 Subject: Fixing cpp08 span --- cpp08/ex01/span.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cpp08/ex01/span.hpp') diff --git a/cpp08/ex01/span.hpp b/cpp08/ex01/span.hpp index 6b72fb5..4edf90f 100644 --- a/cpp08/ex01/span.hpp +++ b/cpp08/ex01/span.hpp @@ -6,7 +6,7 @@ /* By: charles +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/04/15 06:55:07 by charles #+# #+# */ -/* Updated: 2020/12/15 12:22:31 by cacharle ### ########.fr */ +/* Updated: 2020/12/17 14:07:09 by cacharle ### ########.fr */ /* */ /* ************************************************************************** */ @@ -20,7 +20,7 @@ class Span public: Span(); Span(Span const& other); - void operator=(Span const& other); + Span& operator=(Span const& other); ~Span(); Span(unsigned int n); -- cgit