- VC++ workaround in Cartesian_converter.

This commit is contained in:
Sylvain Pion 2003-01-22 13:23:58 +00:00
parent 38aea8d998
commit e6a451b114
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,6 @@
Version 6.73 (22 January 2003)
- VC++ workaround in Cartesian_converter.
Version 6.72 (22 January 2003)
- Add coordinate iterator
- Add new constructors Iso_rectangle_2(left, right, bottom, top) and

View File

@ -46,7 +46,8 @@ public:
typename K2::Point_2
operator()(const typename K1::Point_2 &a) const
{
return typename K2::Point_2(c(a.x()), c(a.y()));
typedef typename K2::Point_2 Point_2;
return Point_2(c(a.x()), c(a.y()));
}
typename K2::Vector_2
@ -108,7 +109,8 @@ public:
typename K2::Point_3
operator()(const typename K1::Point_3 &a) const
{
return typename K2::Point_3(c(a.x()), c(a.y()), c(a.z()));
typedef typename K2::Point_3 Point_3;
return Point_3(c(a.x()), c(a.y()), c(a.z()));
}
typename K2::Vector_3