rstl/algorithm: Remove dangling template<>

This commit is contained in:
Luke Street 2022-09-30 10:17:07 -04:00
parent ec3349c646
commit 797070bb0a
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))