mirror of https://github.com/CGAL/cgal
--pdeantic does not like semicolons after macros
This commit is contained in:
parent
028e6132d9
commit
7b93a2c07e
|
|
@ -102,7 +102,7 @@ public:
|
|||
}
|
||||
|
||||
CGAL_IMPLICIT_INTEROPERABLE_BINARY_OPERATOR_WITH_RT( Type,
|
||||
Comparison_result );
|
||||
Comparison_result )
|
||||
};
|
||||
|
||||
class To_double
|
||||
|
|
|
|||
|
|
@ -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 >{
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Reference in New Issue