From 2e0cf63a219d24ef07412deca9b0e6cb02882b46 Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Wed, 11 Nov 2020 08:27:14 +0100 Subject: Fixing small bugs in cpp03 --- cpp03/ex04/ScavTrap.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'cpp03/ex04/ScavTrap.hpp') diff --git a/cpp03/ex04/ScavTrap.hpp b/cpp03/ex04/ScavTrap.hpp index a1d625b..e908722 100644 --- a/cpp03/ex04/ScavTrap.hpp +++ b/cpp03/ex04/ScavTrap.hpp @@ -6,7 +6,7 @@ /* By: charles +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/04/13 14:11:51 by charles #+# #+# */ -/* Updated: 2020/04/13 18:41:33 by charles ### ########.fr */ +/* Updated: 2020/11/11 07:04:45 by cacharle ### ########.fr */ /* */ /* ************************************************************************** */ @@ -16,13 +16,13 @@ # include # include "ClapTrap.hpp" -class ScavTrap : public ClapTrap +class ScavTrap : virtual public ClapTrap { public: ScavTrap(); - ScavTrap(std::string name); + ScavTrap(std::string const& name); ScavTrap(ScavTrap const& other); - void operator=(ScavTrap const& other); + ScavTrap& operator=(ScavTrap const& other); ~ScavTrap(); void challengeNewcomer(std::string const& target); -- cgit