mirror of https://github.com/CGAL/cgal
undo of change for Intel 9
This commit is contained in:
parent
400c80f302
commit
bf08f44f3c
|
|
@ -72,7 +72,7 @@ public:
|
||||||
{}
|
{}
|
||||||
|
|
||||||
template < typename T1, typename T2 >
|
template < typename T1, typename T2 >
|
||||||
Self(const T1 &x, const T2 &y)
|
Point_2(const T1 &x, const T2 &y)
|
||||||
: Rep(typename R::Construct_point_2()(Return_base_tag(), x, y))
|
: Rep(typename R::Construct_point_2()(Return_base_tag(), x, y))
|
||||||
{}
|
{}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -72,7 +72,7 @@ public:
|
||||||
: Rep(p) {}
|
: Rep(p) {}
|
||||||
|
|
||||||
template < typename T1, typename T2, typename T3 >
|
template < typename T1, typename T2, typename T3 >
|
||||||
Self(const T1& x, const T2& y, const T3& z)
|
Point_3(const T1& x, const T2& y, const T3& z)
|
||||||
: Rep(typename R::Construct_point_3()(Return_base_tag(), x, y, z))
|
: Rep(typename R::Construct_point_3()(Return_base_tag(), x, y, z))
|
||||||
{}
|
{}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -86,7 +86,7 @@ public:
|
||||||
: RVector_2(typename R::Construct_vector_2()(Return_base_tag(), v)) {}
|
: RVector_2(typename R::Construct_vector_2()(Return_base_tag(), v)) {}
|
||||||
|
|
||||||
template < typename T1, typename T2 >
|
template < typename T1, typename T2 >
|
||||||
Self(const T1 &x, const T2 &y)
|
Vector_2(const T1 &x, const T2 &y)
|
||||||
: RVector_2(typename R::Construct_vector_2()(Return_base_tag(), x,y)) {}
|
: RVector_2(typename R::Construct_vector_2()(Return_base_tag(), x,y)) {}
|
||||||
|
|
||||||
Vector_2(const RT &x, const RT &y, const RT &w)
|
Vector_2(const RT &x, const RT &y, const RT &w)
|
||||||
|
|
|
||||||
|
|
@ -85,7 +85,7 @@ public:
|
||||||
: Rep(typename R::Construct_vector_3()(Return_base_tag(), v)) {}
|
: Rep(typename R::Construct_vector_3()(Return_base_tag(), v)) {}
|
||||||
|
|
||||||
template < typename T1, typename T2, typename T3 >
|
template < typename T1, typename T2, typename T3 >
|
||||||
Self(const T1 &x, const T2 &y, const T3 &z)
|
Vector_3(const T1 &x, const T2 &y, const T3 &z)
|
||||||
: Rep(typename R::Construct_vector_3()(Return_base_tag(), x, y, z)) {}
|
: Rep(typename R::Construct_vector_3()(Return_base_tag(), x, y, z)) {}
|
||||||
|
|
||||||
Vector_3(const RT& x, const RT& y, const RT& z, const RT& w)
|
Vector_3(const RT& x, const RT& y, const RT& z, const RT& w)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue