mirror of https://github.com/CGAL/cgal
Add missing CGAL:: (spotted by g++ 4.3).
This commit is contained in:
parent
83a5faffa9
commit
2ec3d27276
|
|
@ -17,8 +17,8 @@
|
||||||
// and a STREP (FET Open) Project under Contract No IST-006413
|
// and a STREP (FET Open) Project under Contract No IST-006413
|
||||||
// (ACS -- Algorithms for Complex Shapes)
|
// (ACS -- Algorithms for Complex Shapes)
|
||||||
//
|
//
|
||||||
// $URL: $
|
// $URL$
|
||||||
// $Id: $
|
// $Id$
|
||||||
//
|
//
|
||||||
// Author(s) : Monique Teillaud <Monique.Teillaud@sophia.inria.fr>
|
// Author(s) : Monique Teillaud <Monique.Teillaud@sophia.inria.fr>
|
||||||
// Sylvain Pion <Sylvain.Pion@sophia.inria.fr>
|
// Sylvain Pion <Sylvain.Pion@sophia.inria.fr>
|
||||||
|
|
@ -50,13 +50,13 @@ CGAL_BEGIN_NAMESPACE
|
||||||
typedef RT_ RT;
|
typedef RT_ RT;
|
||||||
typedef typename Root_of_traits< RT >::RootOf_1 FT;
|
typedef typename Root_of_traits< RT >::RootOf_1 FT;
|
||||||
|
|
||||||
typedef Polynomials_for_line_3<FT> Polynomials_for_line_3;
|
typedef CGAL::Polynomials_for_line_3<FT> Polynomials_for_line_3;
|
||||||
typedef Polynomial_for_spheres_2_3<FT> Polynomial_for_spheres_2_3;
|
typedef CGAL::Polynomial_for_spheres_2_3<FT> Polynomial_for_spheres_2_3;
|
||||||
typedef Polynomial_1_3<FT> Polynomial_1_3;
|
typedef CGAL::Polynomial_1_3<FT> Polynomial_1_3;
|
||||||
// problem RT / FT ?
|
// problem RT / FT ?
|
||||||
|
|
||||||
typedef typename Root_of_traits< RT >::RootOf_2 Root_of_2;
|
typedef typename Root_of_traits< RT >::RootOf_2 Root_of_2;
|
||||||
typedef Root_for_spheres_2_3< RT > Root_for_spheres_2_3;
|
typedef CGAL::Root_for_spheres_2_3< RT > Root_for_spheres_2_3;
|
||||||
|
|
||||||
typedef AlgebraicSphereFunctors::Construct_polynomial_for_spheres_2_3<Self>
|
typedef AlgebraicSphereFunctors::Construct_polynomial_for_spheres_2_3<Self>
|
||||||
Construct_polynomial_for_spheres_2_3;
|
Construct_polynomial_for_spheres_2_3;
|
||||||
|
|
|
||||||
|
|
@ -42,9 +42,9 @@ class Root_for_spheres_2_3 {
|
||||||
typedef RT_ RT;
|
typedef RT_ RT;
|
||||||
typedef typename Root_of_traits< RT >::RootOf_2 Root_of_2;
|
typedef typename Root_of_traits< RT >::RootOf_2 Root_of_2;
|
||||||
typedef typename Root_of_traits< RT >::RootOf_1 FT;
|
typedef typename Root_of_traits< RT >::RootOf_1 FT;
|
||||||
typedef Polynomial_1_3< FT > Polynomial_1_3;
|
typedef CGAL::Polynomial_1_3< FT > Polynomial_1_3;
|
||||||
typedef Polynomial_for_spheres_2_3< FT > Polynomial_for_spheres_2_3;
|
typedef CGAL::Polynomial_for_spheres_2_3< FT > Polynomial_for_spheres_2_3;
|
||||||
typedef Polynomials_for_line_3< FT > Polynomials_for_line_3;
|
typedef CGAL::Polynomials_for_line_3< FT > Polynomials_for_line_3;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
Root_of_2 x_;
|
Root_of_2 x_;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue