diff options
Diffstat (limited to 'cpp05/ex00/main.cpp')
| -rw-r--r-- | cpp05/ex00/main.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/cpp05/ex00/main.cpp b/cpp05/ex00/main.cpp index 90092cf..e0b3edf 100644 --- a/cpp05/ex00/main.cpp +++ b/cpp05/ex00/main.cpp @@ -6,7 +6,7 @@ /* By: charles <charles.cabergs@gmail.com> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/04/14 18:13:05 by charles #+# #+# */ -/* Updated: 2020/11/17 11:51:33 by cacharle ### ########.fr */ +/* Updated: 2020/12/12 11:41:15 by cacharle ### ########.fr */ /* */ /* ************************************************************************** */ @@ -22,13 +22,12 @@ int main() Bureaucrat yep("YEP", 1); Bureaucrat yep2(yep); - Bureaucrat yep3("SHOULD NOT BE PRINTED", 42); + Bureaucrat yep3("SHOULD NOT BE OVERWRITTEN", 42); yep3 = yep; std::cout << yep; std::cout << yep2; std::cout << yep3; - std::cout << std::endl; std::cout << "############### DECREMENT" << std::endl; Bureaucrat a("jean", 140); |
