mirror of https://github.com/CGAL/cgal
parent
2ac3a00d2a
commit
766a65e1c0
|
|
@ -91,11 +91,9 @@ namespace CGAL {
|
|||
};
|
||||
|
||||
struct Initializer_list {
|
||||
// Fix T==NT?
|
||||
template<class T>
|
||||
result_type operator()(std::initializer_list<T> l) const {
|
||||
return Iterator()(l.size(),l.begin(),l.end());
|
||||
}
|
||||
result_type operator()(std::initializer_list<NT> l) const {
|
||||
return Iterator()(l.size(),l.begin(),l.end());
|
||||
}
|
||||
};
|
||||
|
||||
struct Values {
|
||||
|
|
|
|||
|
|
@ -1594,6 +1594,16 @@ namespace Eigen {
|
|||
};
|
||||
};
|
||||
|
||||
template<class A, class B, class C>struct ScalarBinaryOpTraits;
|
||||
template<bool b, typename BinaryOp>
|
||||
struct ScalarBinaryOpTraits<CGAL::Interval_nt<b>, double, BinaryOp> {
|
||||
typedef CGAL::Interval_nt<b> ReturnType;
|
||||
};
|
||||
template<bool b, typename BinaryOp>
|
||||
struct ScalarBinaryOpTraits<double, CGAL::Interval_nt<b>, BinaryOp> {
|
||||
typedef CGAL::Interval_nt<b> ReturnType;
|
||||
};
|
||||
|
||||
namespace internal {
|
||||
template<class> struct significant_decimals_impl;
|
||||
template<bool b>
|
||||
|
|
|
|||
Loading…
Reference in New Issue