diff --git a/include/rstl/algorithm.hpp b/include/rstl/algorithm.hpp index c38443cb..732a613f 100644 --- a/include/rstl/algorithm.hpp +++ b/include/rstl/algorithm.hpp @@ -4,8 +4,6 @@ #include "rstl/pointer_iterator.hpp" namespace rstl { -template < typename T > - template < class Iter, class T > inline Iter find(Iter first, Iter last, const T& val) { while (first != last && !(*first == val))