added missing std::

This commit is contained in:
Paolo Cignoni 2008-12-19 15:52:20 +00:00
parent aee7504a93
commit 5e1ccc4cfc
1 changed files with 1 additions and 1 deletions

View File

@ -402,7 +402,7 @@ static int Open( OpenMeshType &m, const char * filename, Info &oi)
}
// verifying validity of vertex indices
vector<int> tmp = ff.v;
std::vector<int> tmp = ff.v;
std::sort(tmp.begin(),tmp.end());
std::unique(tmp.begin(),tmp.end());
if(tmp.size() != ff.v.size())