diff --git a/ex01/iter.hpp b/ex01/iter.hpp index c9efed4..9ad0a99 100644 --- a/ex01/iter.hpp +++ b/ex01/iter.hpp @@ -6,7 +6,7 @@ /* By: aortigos -void iter(PTR const *address, unsigned int const length, T func) -{ - for (unsigned int i = 0; i < length; i++) - { - func(address[i]); - } -} - #endif