From 97f8b30adf8bb30fda4ff018f6f6acb3326b053d Mon Sep 17 00:00:00 2001 From: cignoni Date: Thu, 3 Oct 2013 09:59:11 +0000 Subject: [PATCH] changed a type of the Build wrapper to override a weird compiler error (form int[3] to point3i) --- vcg/complex/algorithms/create/platonic.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vcg/complex/algorithms/create/platonic.h b/vcg/complex/algorithms/create/platonic.h index 846e65e3..859c8dea 100644 --- a/vcg/complex/algorithms/create/platonic.h +++ b/vcg/complex/algorithms/create/platonic.h @@ -615,7 +615,7 @@ void Build( MeshType & in, const V & v, const F & f) template void Build( MeshType & in, const V & v) { - std::vector dummyfaceVec; + std::vector dummyfaceVec; Build(in,v,dummyfaceVec); }