From 1d8d6ef5df1ab8cfa30b554da94e649da8e73d6c Mon Sep 17 00:00:00 2001 From: Menelaos Karavelas Date: Tue, 17 Jun 2003 17:50:41 +0000 Subject: [PATCH] in class Inverted_weighted_point I renamed the type Site_2 to K_Site_2 to satisfy the VC7 compiler... --- .../Apollonius_graph_predicate_constructions_C2.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Packages/Apollonius_graph_2/include/CGAL/predicates/Apollonius_graph_predicate_constructions_C2.h b/Packages/Apollonius_graph_2/include/CGAL/predicates/Apollonius_graph_predicate_constructions_C2.h index 8acc0488466..8a9d5657770 100644 --- a/Packages/Apollonius_graph_2/include/CGAL/predicates/Apollonius_graph_predicate_constructions_C2.h +++ b/Packages/Apollonius_graph_2/include/CGAL/predicates/Apollonius_graph_predicate_constructions_C2.h @@ -35,13 +35,13 @@ class Inverted_weighted_point : public K::Site_2 { public: - typedef typename K::Site_2 Site_2; + typedef typename K::Site_2 K_Site_2; typedef typename K::FT FT; private: FT _p; public: - Inverted_weighted_point(const Site_2& wp, const FT& p) - : Site_2(wp), _p(p) {} + Inverted_weighted_point(const K_Site_2& wp, const FT& p) + : K_Site_2(wp), _p(p) {} inline FT p() const { return _p; } };