mirror of https://github.com/CGAL/cgal
Remove typename in non-template code
This commit is contained in:
parent
c238d7822d
commit
1b396bc483
|
|
@ -113,7 +113,7 @@ public:
|
||||||
domain_.get_corners(std::back_inserter(corners));
|
domain_.get_corners(std::back_inserter(corners));
|
||||||
assert(corners.size() == 4);
|
assert(corners.size() == 4);
|
||||||
|
|
||||||
typename Corners_vector::const_iterator cit = corners.begin(), end = corners.end();
|
Corners_vector::const_iterator cit = corners.begin(), end = corners.end();
|
||||||
for(; cit!=end; ++cit)
|
for(; cit!=end; ++cit)
|
||||||
{
|
{
|
||||||
if(cit->second == p3_)
|
if(cit->second == p3_)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue