Replaced CGAL::Point_2<K> with K::Point_2

This commit is contained in:
Andreas Fabri 2003-11-14 14:53:54 +00:00
parent b1cb8481fa
commit ac82ebb33e
2 changed files with 5 additions and 4 deletions

View File

@ -1,5 +1,8 @@
Changes done to the `Min_circle_2' package
Version 3.28 on 14-Nov-2003
Replaced CGAL::Point_2<K> with K::Point_2
Version 3.27 on 17-Oct-2003
- Removed one more #endif in Min_circle_2.h

View File

@ -21,9 +21,7 @@
#define CGAL_MIN_CIRCLE_2_TRAITS_2_H
// includes
#ifndef CGAL_POINT_2_H
# include <CGAL/Point_2.h>
#endif
#ifndef CGAL_OPTIMISATION_CIRCLE_2_H
# include <CGAL/Optimisation_circle_2.h>
#endif
@ -48,7 +46,7 @@ class Min_circle_2_traits_2 {
public:
// types
typedef K_ K;
typedef CGAL::Point_2<K> Point;
typedef typename K::Point_2 Point;
typedef CGAL::Optimisation_circle_2<K> Circle;
private: