rstl/algorithm: Remove dangling template<>

Former-commit-id: 797070bb0a
This commit is contained in:
Luke Street 2022-09-30 10:17:07 -04:00
parent 6ceca123e4
commit 78c2744399
1 changed files with 0 additions and 2 deletions

View File

@ -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))