--pdeantic does not like semicolons after macros

This commit is contained in:
Michael Kerber 2010-04-21 21:49:30 +00:00
parent 028e6132d9
commit 7b93a2c07e
3 changed files with 8 additions and 8 deletions

View File

@ -102,7 +102,7 @@ public:
}
CGAL_IMPLICIT_INTEROPERABLE_BINARY_OPERATOR_WITH_RT( Type,
Comparison_result );
Comparison_result )
};
class To_double

View File

@ -220,12 +220,12 @@ public:
// Coercion traits:
CGAL_DEFINE_COERCION_TRAITS_FROM_TO(short ,leda_bigfloat_interval);
CGAL_DEFINE_COERCION_TRAITS_FROM_TO(int ,leda_bigfloat_interval);
CGAL_DEFINE_COERCION_TRAITS_FROM_TO(long ,leda_bigfloat_interval);
CGAL_DEFINE_COERCION_TRAITS_FROM_TO(float ,leda_bigfloat_interval);
CGAL_DEFINE_COERCION_TRAITS_FROM_TO(double ,leda_bigfloat_interval);
CGAL_DEFINE_COERCION_TRAITS_FROM_TO(::leda::bigfloat ,leda_bigfloat_interval);
CGAL_DEFINE_COERCION_TRAITS_FROM_TO(short ,leda_bigfloat_interval)
CGAL_DEFINE_COERCION_TRAITS_FROM_TO(int ,leda_bigfloat_interval)
CGAL_DEFINE_COERCION_TRAITS_FROM_TO(long ,leda_bigfloat_interval)
CGAL_DEFINE_COERCION_TRAITS_FROM_TO(float ,leda_bigfloat_interval)
CGAL_DEFINE_COERCION_TRAITS_FROM_TO(double ,leda_bigfloat_interval)
CGAL_DEFINE_COERCION_TRAITS_FROM_TO(::leda::bigfloat ,leda_bigfloat_interval)
template <>
struct Coercion_traits< leda_bigfloat_interval , ::leda::integer >{

View File

@ -102,7 +102,7 @@ template <> class Algebraic_structure_traits< leda_real >
ForwardIterator begin,
ForwardIterator end) const {
return CGAL_LEDA_SCOPE::diamond(k,make_polynomial(begin,end));
};
}
/* template <class ForwardIterator>
Type operator()( leda_rational lower,
leda_rational upper,