Added some missing 'template' keywords to member function calls, that

gcc and MSVC silently swallowed.
This commit is contained in:
Philipp Möller 2012-06-20 11:05:59 +00:00
parent ea6635c86d
commit d8270400a2
1 changed files with 2 additions and 2 deletions

View File

@ -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);