fixed boost::is_same<Type,Type>

minor fix for master
This commit is contained in:
Michael Hemmer 2013-09-02 18:28:55 +03:00
parent ce5360638a
commit 02e17dfdf0
1 changed files with 3 additions and 3 deletions

View File

@ -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<Type , Type >::value));
::boost::is_same<Type_ , Type >::value));
typename Coercion_traits< NT1, NT2 >::Cast cast;
operator()( cast(x), cast(y), q, r );