mirror of https://github.com/CGAL/cgal
Added some missing 'template' keywords to member function calls, that
gcc and MSVC silently swallowed.
This commit is contained in:
parent
ea6635c86d
commit
d8270400a2
|
|
@ -2177,7 +2177,7 @@ namespace CGAL {
|
|||
|
||||
decrease_attribute_ref_counting<i>(adart);
|
||||
|
||||
adart->set_attribute<i>(ah);
|
||||
adart->template set_attribute<i>(ah);
|
||||
ah->set_dart(adart);
|
||||
}
|
||||
|
||||
|
|
@ -2199,7 +2199,7 @@ namespace CGAL {
|
|||
if ( it->template attribute<i>()!=ah )
|
||||
{
|
||||
decrease_attribute_ref_counting<i>(it);
|
||||
it->set_attribute<i>(ah);
|
||||
it->template set_attribute<i>(ah);
|
||||
}
|
||||
}
|
||||
ah->set_dart(adart);
|
||||
|
|
|
|||
Loading…
Reference in New Issue