Removed a few warnings and added a template keyword in the call of a templated function member.
This commit is contained in:
parent
117c2a06de
commit
78501226de
|
@ -80,7 +80,7 @@ public:
|
||||||
|
|
||||||
static void ImportFace(MeshLeft &ml, MeshRight &mr, FaceLeft &fl, const FaceRight &fr, std::vector<int> &remap)
|
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(0)=&ml.vert[remap[ Index(mr,fr.V(0))]];
|
||||||
fl.V(1)=&ml.vert[remap[ Index(mr,fr.V(1))]];
|
fl.V(1)=&ml.vert[remap[ Index(mr,fr.V(1))]];
|
||||||
fl.V(2)=&ml.vert[remap[ Index(mr,fr.V(2))]];
|
fl.V(2)=&ml.vert[remap[ Index(mr,fr.V(2))]];
|
||||||
|
|
Loading…
Reference in New Issue