From d8270400a2ca02e5a882ef7f41843eee43b07ccd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20M=C3=B6ller?= Date: Wed, 20 Jun 2012 11:05:59 +0000 Subject: [PATCH] Added some missing 'template' keywords to member function calls, that gcc and MSVC silently swallowed. --- Combinatorial_map/include/CGAL/Combinatorial_map.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Combinatorial_map/include/CGAL/Combinatorial_map.h b/Combinatorial_map/include/CGAL/Combinatorial_map.h index 46a60735856..baf0eb3e9c0 100644 --- a/Combinatorial_map/include/CGAL/Combinatorial_map.h +++ b/Combinatorial_map/include/CGAL/Combinatorial_map.h @@ -2177,7 +2177,7 @@ namespace CGAL { decrease_attribute_ref_counting(adart); - adart->set_attribute(ah); + adart->template set_attribute(ah); ah->set_dart(adart); } @@ -2199,7 +2199,7 @@ namespace CGAL { if ( it->template attribute()!=ah ) { decrease_attribute_ref_counting(it); - it->set_attribute(ah); + it->template set_attribute(ah); } } ah->set_dart(adart);