From 5e1ccc4cfc7bb9b68066fafdceed2e42dd43107c Mon Sep 17 00:00:00 2001 From: cignoni Date: Fri, 19 Dec 2008 15:52:20 +0000 Subject: [PATCH] added missing std:: --- wrap/io_trimesh/import_obj.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wrap/io_trimesh/import_obj.h b/wrap/io_trimesh/import_obj.h index e6905780..48fc2230 100644 --- a/wrap/io_trimesh/import_obj.h +++ b/wrap/io_trimesh/import_obj.h @@ -402,7 +402,7 @@ static int Open( OpenMeshType &m, const char * filename, Info &oi) } // verifying validity of vertex indices - vector tmp = ff.v; + std::vector tmp = ff.v; std::sort(tmp.begin(),tmp.end()); std::unique(tmp.begin(),tmp.end()); if(tmp.size() != ff.v.size())