remove BORLAND workaround, we don't support it anymore, and the workaround is even probably suboptimal

This commit is contained in:
Sylvain Pion 2007-02-28 19:28:09 +00:00
parent dd22fc8188
commit 487b5a53b1
1 changed files with 0 additions and 9 deletions

View File

@ -145,12 +145,7 @@ public:
} }
}; };
// without this we get an internal compiler error on bcc
#if defined(__BORLANDC__)
template <class R_, class Polyhedron_ = CGAL::Polyhedron_3<R_> >
#else
template <class R_> template <class R_>
#endif
class Convex_hull_traits_3 class Convex_hull_traits_3
{ {
public: public:
@ -162,11 +157,7 @@ class Convex_hull_traits_3
typedef Point_triple<R> Plane_3; typedef Point_triple<R> Plane_3;
typedef typename R::Vector_3 Vector_3; typedef typename R::Vector_3 Vector_3;
#if defined(__BORLANDC__)
typedef Polyhedron_ Polyhedron_3;
#else
typedef CGAL::Polyhedron_3<R> Polyhedron_3; typedef CGAL::Polyhedron_3<R> Polyhedron_3;
#endif
typedef typename R::Construct_segment_3 Construct_segment_3; typedef typename R::Construct_segment_3 Construct_segment_3;