mirror of https://github.com/CGAL/cgal
correct a few bugs related to namespaces
This commit is contained in:
parent
89624350c1
commit
e69887ba80
|
|
@ -9,7 +9,7 @@
|
|||
#CGAL_MAKEFILE = /u/alcor/0/prisme_util/CGAL/CGAL-last/make/makefile_sparc_SunOS-5.6_eg++-egcs-2.91.60_LEDA
|
||||
#CGAL_MAKEFILE = /u/alcor/0/prisme_util/CGAL/CGAL-1.2-I-13/make/makefile_mips_IRIX-6.2_CC-n32-7.20_LEDA
|
||||
#CGAL_MAKEFILE = /u/alcor/0/prisme_util/CGAL/CGAL-1.2-I-13/make/makefile_sparc_SunOS-5.6_eg++-egcs-2.91.57_LEDA
|
||||
CGAL_MAKEFILE = /u/alcor/0/prisme_util/CGAL/CGAL-2.0-I-3/make/makefile_sparc_SunOS-5.6_eg++-egcs-2.91.60_LEDA
|
||||
CGAL_MAKEFILE = /u/alcor/0/prisme_util/CGAL/CGAL-2.0-I-5/make/makefile_sparc_SunOS-5.6_eg++-egcs-2.91.60_LEDA
|
||||
include $(CGAL_MAKEFILE)
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -47,7 +47,7 @@ int main()
|
|||
typedef CGAL::Triangulation_default_data_structure_2<Gt,Vb,Fb> Tds;
|
||||
typedef CGAL::Delaunay_triangulation_2<Gt,Tds> Cls;
|
||||
|
||||
CGAL::_test_cls_delaunay_triangulation_2( Cls() );
|
||||
_test_cls_delaunay_triangulation_2( Cls() );
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -52,9 +52,11 @@ int main()
|
|||
typedef CGAL::Triangulation_vertex_base_2<Gt2> Vb2;
|
||||
typedef CGAL::Triangulation_face_base_2<Gt2> Fb2;
|
||||
typedef CGAL::Triangulation_default_data_structure_2<Gt2,Vb2,Fb2> Tds2;
|
||||
typedef CGAL::Triangulation_2<Gt2,Tds2> Cls2;
|
||||
typedef CGAL::Triangulation_2<Gt2,Tds2> Cls2;
|
||||
|
||||
|
||||
_test_cls_triangulation_2( Cls2() );
|
||||
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue