From 02e17dfdf020d2ba1fa61e1c0bd8214a89841a3c Mon Sep 17 00:00:00 2001 From: Michael Hemmer Date: Mon, 2 Sep 2013 18:28:55 +0300 Subject: [PATCH] fixed boost::is_same minor fix for master --- .../include/CGAL/Algebraic_structure_traits.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Algebraic_foundations/include/CGAL/Algebraic_structure_traits.h b/Algebraic_foundations/include/CGAL/Algebraic_structure_traits.h index eed1ea84977..dd7b8f1115d 100644 --- a/Algebraic_foundations/include/CGAL/Algebraic_structure_traits.h +++ b/Algebraic_foundations/include/CGAL/Algebraic_structure_traits.h @@ -359,10 +359,10 @@ class Algebraic_structure_traits_base< Type_, Type& q, Type& r ) const { typedef Coercion_traits< NT1, NT2 > CT; - typedef typename CT::Type Type; - CGAL_USE_TYPE(Type); + typedef typename CT::Type Type_; + CGAL_USE_TYPE(Type_); CGAL_static_assertion(( - ::boost::is_same::value)); + ::boost::is_same::value)); typename Coercion_traits< NT1, NT2 >::Cast cast; operator()( cast(x), cast(y), q, r );