diff options
Diffstat (limited to 'cpp08/ex01/span.hpp')
| -rw-r--r-- | cpp08/ex01/span.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
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 <charles.cabergs@gmail.com> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* 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); |
