mirror of https://github.com/CGAL/cgal
apposible fix for g++ 3.2 - typename of a friend lass?
This commit is contained in:
parent
3064c33c6d
commit
47397c41dc
|
|
@ -71,8 +71,16 @@ public:
|
|||
|
||||
#ifdef CGAL_PM_FRIEND_CLASS
|
||||
|
||||
friend class Trapezoidal_decomposition_2<Traits>::Around_point_circulator;
|
||||
friend class Trapezoidal_decomposition_2<Traits>::In_face_iterator;
|
||||
friend class
|
||||
#if (__GNUC__==3) && (__GNUC_MINOR__>=2)
|
||||
typename
|
||||
#endif
|
||||
Trapezoidal_decomposition_2<Traits>::Around_point_circulator;
|
||||
friend class
|
||||
#if (__GNUC__==3) && (__GNUC_MINOR__>=2)
|
||||
typename
|
||||
#endif
|
||||
Trapezoidal_decomposition_2<Traits>::In_face_iterator;
|
||||
|
||||
#endif
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue