changed a type of the Build wrapper to override a weird compiler error (form int[3] to point3i)

This commit is contained in:
Paolo Cignoni 2013-10-03 09:59:11 +00:00
parent ad17f61dc0
commit 97f8b30adf
1 changed files with 1 additions and 1 deletions
vcg/complex/algorithms/create

View File

@ -615,7 +615,7 @@ void Build( MeshType & in, const V & v, const F & f)
template <class MeshType,class V> template <class MeshType,class V>
void Build( MeshType & in, const V & v) void Build( MeshType & in, const V & v)
{ {
std::vector<int[3]> dummyfaceVec; std::vector<Point3i> dummyfaceVec;
Build(in,v,dummyfaceVec); Build(in,v,dummyfaceVec);
} }