undo of change for Intel 9

This commit is contained in:
Andreas Fabri 2007-03-13 08:50:41 +00:00
parent 400c80f302
commit bf08f44f3c
4 changed files with 4 additions and 4 deletions

View File

@ -72,7 +72,7 @@ public:
{}
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))
{}

View File

@ -72,7 +72,7 @@ public:
: Rep(p) {}
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))
{}

View File

@ -86,7 +86,7 @@ public:
: RVector_2(typename R::Construct_vector_2()(Return_base_tag(), v)) {}
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)) {}
Vector_2(const RT &x, const RT &y, const RT &w)

View File

@ -85,7 +85,7 @@ public:
: Rep(typename R::Construct_vector_3()(Return_base_tag(), v)) {}
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)) {}
Vector_3(const RT& x, const RT& y, const RT& z, const RT& w)