mirror of https://github.com/CGAL/cgal
Bugfix: missing typename
This commit is contained in:
parent
b21d6a18aa
commit
4749fda6a1
|
|
@ -63,7 +63,7 @@ public:
|
||||||
++it;
|
++it;
|
||||||
}
|
}
|
||||||
while(it!= triangles.end()){
|
while(it!= triangles.end()){
|
||||||
const Profile::Triangle& t = *it;
|
const typename Profile::Triangle& t = *it;
|
||||||
Point p = get(ppmap,t.v0);
|
Point p = get(ppmap,t.v0);
|
||||||
Point q = get(ppmap,t.v1);
|
Point q = get(ppmap,t.v1);
|
||||||
Point r = get(ppmap,t.v2);
|
Point r = get(ppmap,t.v2);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue