Bugfix: missing typename

This commit is contained in:
Simon Giraudot 2017-06-22 10:16:55 +02:00 committed by Andreas Fabri
parent b21d6a18aa
commit 4749fda6a1
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ public:
++it;
}
while(it!= triangles.end()){
const Profile::Triangle& t = *it;
const typename Profile::Triangle& t = *it;
Point p = get(ppmap,t.v0);
Point q = get(ppmap,t.v1);
Point r = get(ppmap,t.v2);