From c10aa969c60cedef893146307fa319250901465a Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Fri, 11 Dec 2020 12:11:50 +0100 Subject: Fixing cpp04 according to correction --- cpp04/ex03/Character.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'cpp04/ex03/Character.cpp') diff --git a/cpp04/ex03/Character.cpp b/cpp04/ex03/Character.cpp index 57fcfeb..42e07da 100644 --- a/cpp04/ex03/Character.cpp +++ b/cpp04/ex03/Character.cpp @@ -6,7 +6,7 @@ /* By: charles +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/04/14 16:45:54 by charles #+# #+# */ -/* Updated: 2020/11/17 08:30:21 by cacharle ### ########.fr */ +/* Updated: 2020/12/11 12:08:56 by cacharle ### ########.fr */ /* */ /* ************************************************************************** */ @@ -44,7 +44,6 @@ void Character::unequip(int idx) { if (idx < 0 || idx >= m_inventory_size) return; - delete m_inventory[idx]; for (int i = idx; i < m_inventory_size - 1; i++) m_inventory[i] = m_inventory[i + 1]; m_inventory_size--; -- cgit