Removed the 'erase_if' template, that was silly
This commit is contained in:
@@ -32,17 +32,4 @@ std::string to_string_custom(int i);
|
||||
|
||||
int to_integer_custom(std::string);
|
||||
|
||||
//wow
|
||||
template<typename ContainerT, typename PredicateT>
|
||||
void erase_if(ContainerT& items, const PredicateT& predicate) {
|
||||
for(auto it = items.begin(); it != items.end(); /* empty */) {
|
||||
if(predicate(*it)) {
|
||||
it = items.erase(it);
|
||||
}
|
||||
else {
|
||||
++it;
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user