Tengo esta función:'std :: vector <T> :: iterator it;' no compila
template<typename T>
void Inventory::insertItem(std::vector<T>& v, const T& x)
{
std::vector<T>::iterator it; // doesn't compile
for(it=v.begin(); it<v.end(); ++it)
{
if(x <= *it) // if the insertee is alphabetically less than this index
{
v.insert(it, x);
}
}
}
y g ++ da estos errores:
src/Item.hpp: In member function ‘void
yarl::item::Inventory::insertItem(std::vector<T, std::allocator<_CharT> >&, const T&)’:
src/Item.hpp:186: error: expected ‘;’ before ‘it’
src/Item.hpp:187: error: ‘it’ was not declared in this scope
debe ser algo sencillo, pero al cabo de diez minutos de mirar a lo que pueda' t encuentra algo mal. ¿Alguien más lo ve?
por cierto, no se debe utilizar 'it