aboutsummaryrefslogtreecommitdiff
path: root/cpp01/ex03/ZombieHorde.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp01/ex03/ZombieHorde.hpp')
-rw-r--r--cpp01/ex03/ZombieHorde.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp01/ex03/ZombieHorde.hpp b/cpp01/ex03/ZombieHorde.hpp
index bb6bbde..c6bd496 100644
--- a/cpp01/ex03/ZombieHorde.hpp
+++ b/cpp01/ex03/ZombieHorde.hpp
@@ -6,7 +6,7 @@
/* By: charles <charles.cabergs@gmail.com> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/04/13 09:52:18 by charles #+# #+# */
-/* Updated: 2020/11/09 10:53:45 by cacharle ### ########.fr */
+/* Updated: 2020/11/09 12:45:34 by cacharle ### ########.fr */
/* */
/* ************************************************************************** */
@@ -26,8 +26,8 @@ public:
void announce();
private:
- size_t m_size;
- Zombie** m_horde;
+ size_t m_size;
+ Zombie* m_horde;
};
#endif