Yet another missing template keyword for gcc

This commit is contained in:
Paolo Cignoni 2009-01-20 08:18:01 +00:00
parent 92fd17590a
commit 4f6cff78ed
1 changed files with 1 additions and 1 deletions

View File

@ -311,7 +311,7 @@ bool RefineE(MESH_TYPE &m, MIDPOINT mid, EDGEPRED ep,bool RefineSelected=false,
typedef RefinedFaceData<VertexPointer> RFD;
typedef typename MESH_TYPE :: template PerFaceAttributeHandle<RFD> HandleType;
HandleType RD = tri::Allocator<MESH_TYPE>::AddPerFaceAttribute<RFD> (m,std::string("RefineData"));
HandleType RD = tri::Allocator<MESH_TYPE>:: template AddPerFaceAttribute<RFD> (m,std::string("RefineData"));
// Callback stuff
int step=0;