mirror of https://github.com/CGAL/cgal
fixed base class for 'using' statement
This commit is contained in:
parent
e3c0dd54fb
commit
a59f9dcdc2
|
|
@ -503,8 +503,8 @@ class Aff_transformationH2
|
||||||
typedef typename R_::Direction_2 Direction_2;
|
typedef typename R_::Direction_2 Direction_2;
|
||||||
typedef typename R_::Line_2 Line_2;
|
typedef typename R_::Line_2 Line_2;
|
||||||
|
|
||||||
typedef Handle_for_virtual< Aff_transformation_rep_baseH2<R_> > Aff_t_base;
|
typedef Handle_for_virtual< Aff_transformation_rep_baseH2<R_> > Base;
|
||||||
using Handle_for_virtual<Aff_t_base>::initialize_with;
|
using Base::initialize_with;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
typedef R_ R;
|
typedef R_ R;
|
||||||
|
|
|
||||||
|
|
@ -293,8 +293,8 @@ class Aff_transformationH3
|
||||||
typedef typename R_::Plane_3 Plane_3;
|
typedef typename R_::Plane_3 Plane_3;
|
||||||
typedef typename R_::Aff_transformation_3 Aff_transformation_3;
|
typedef typename R_::Aff_transformation_3 Aff_transformation_3;
|
||||||
|
|
||||||
typedef Handle_for_virtual< Aff_transformation_rep_baseH3<R_> > Aff_t_base;
|
typedef Handle_for_virtual< Aff_transformation_rep_baseH3<R_> > Base;
|
||||||
using Handle_for_virtual<Aff_t_base>::initialize_with;
|
using Base::initialize_with;
|
||||||
public:
|
public:
|
||||||
typedef R_ R;
|
typedef R_ R;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue