the bug fix for SunPro CC was missing a CGAL:: qualification

This commit is contained in:
Menelaos Karavelas 2006-07-29 05:36:00 +00:00
parent 5b79951cce
commit 8e658f4fbd
2 changed files with 5 additions and 2 deletions

View File

@ -1,3 +1,6 @@
29 July 2006: Menelaos Karavelas
- the bug fix for SunPro CC was missing a CGAL:: qualification
27 July 2006: Menelaos Karavelas 27 July 2006: Menelaos Karavelas
- moved predicate code to SegmentDelaunayGraph_2 namespace - moved predicate code to SegmentDelaunayGraph_2 namespace
- removed unused code and corresponding files - removed unused code and corresponding files

View File

@ -45,8 +45,8 @@ namespace Internal {
template<class CK, class FK> template<class CK, class FK>
struct SUNPRO_CC_Interval_converter struct SUNPRO_CC_Interval_converter
: public Cartesian_converter<CK, FK, : public CGAL::Cartesian_converter<CK, FK,
To_interval< typename CK::RT > > To_interval< typename CK::RT > >
{ {
}; };