From 290f80ee4e54a9e29792b71a6349a4069e19adba Mon Sep 17 00:00:00 2001 From: Phillip Stephens Date: Tue, 20 Jan 2026 00:41:12 -0800 Subject: [PATCH] Remove comment about non-matching from rstl::erase (see previous commit) --- include/rstl/vector.hpp | 1 - 1 file changed, 1 deletion(-) diff --git a/include/rstl/vector.hpp b/include/rstl/vector.hpp index 41eb08c1..da6fc23d 100644 --- a/include/rstl/vector.hpp +++ b/include/rstl/vector.hpp @@ -219,7 +219,6 @@ typename vector< T, Alloc >::iterator vector< T, Alloc >::erase(iterator it) { return erase(it, it + 1); } -// TODO nonmatching (CCameraManager::RemoveCinemaCamera) template < typename T, typename Alloc > typename vector< T, Alloc >::iterator vector< T, Alloc >::erase(iterator first, iterator last) { destroy(first, last);