Removed a few warnings and added a template keyword in the call of a templated function member.

This commit is contained in:
Paolo Cignoni 2008-10-09 13:50:45 +00:00
parent 117c2a06de
commit 78501226de
1 changed files with 1 additions and 1 deletions

View File

@ -80,7 +80,7 @@ public:
static void ImportFace(MeshLeft &ml, MeshRight &mr, FaceLeft &fl, const FaceRight &fr, std::vector<int> &remap)
{
fl.ImportLocal<FaceRight>(fr);
fl.template ImportLocal<FaceRight>(fr);
fl.V(0)=&ml.vert[remap[ Index(mr,fr.V(0))]];
fl.V(1)=&ml.vert[remap[ Index(mr,fr.V(1))]];
fl.V(2)=&ml.vert[remap[ Index(mr,fr.V(2))]];