fix: compilation (forget to add the overload '=' in the header)

This commit is contained in:
Raphael 2025-02-17 11:59:23 +01:00
parent e78b8fbe33
commit 42e83d8e62
3 changed files with 6 additions and 3 deletions

View file

@ -6,7 +6,7 @@
/* By: rparodi <rparodi@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/01/20 23:13:16 by rparodi #+# #+# */
/* Updated: 2025/02/10 10:43:14 by rparodi ### ########.fr */
/* Updated: 2025/02/17 11:54:45 by rparodi ### ########.fr */
/* */
/* ************************************************************************** */
@ -21,6 +21,7 @@ class ScavTrap : public ClapTrap {
ScavTrap();
ScavTrap(ScavTrap const &copy);
ScavTrap(std::string name);
ScavTrap& operator=(ScavTrap &assign);
~ScavTrap();
void guardGate();
protected: