How do I bring STL iterators into the current scope? eg.
#include <vector>
using std::vector;
int main()
{
vector<int>::it erator it;
return 0;
}
gives an error
#include <vector>
using std::vector;
int main()
{
vector<int>::it erator it;
return 0;
}
gives an error
Comment