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 --- cpp01/ex06/HumanA.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cpp01/ex06/HumanA.cpp') diff --git a/cpp01/ex06/HumanA.cpp b/cpp01/ex06/HumanA.cpp index ab4e5f3..6d73ab2 100644 --- a/cpp01/ex06/HumanA.cpp +++ b/cpp01/ex06/HumanA.cpp @@ -6,13 +6,13 @@ /* By: cacharle +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/02/02 16:44:03 by cacharle #+# #+# */ -/* Updated: 2020/11/09 11:09:22 by cacharle ### ########.fr */ +/* Updated: 2020/11/10 08:34:33 by cacharle ### ########.fr */ /* */ /* ************************************************************************** */ #include "HumanA.hpp" -HumanA::HumanA(std::string const& name, Weapon& weapon) +HumanA::HumanA(std::string const& name, Weapon const& weapon) : m_name(name), m_weapon(weapon) {} -- cgit