mirror of https://github.com/CGAL/cgal
Bug fix in GMap iterator
This commit is contained in:
parent
efae67d339
commit
2bc3a9ee2e
|
|
@ -680,8 +680,8 @@ namespace CGAL {
|
||||||
<Map_,Const,A2,A3,A4,A5,A6,A7,A8,A9>::type, A1>
|
<Map_,Const,A2,A3,A4,A5,A6,A7,A8,A9>::type, A1>
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
typedef typename GMap_dart_iterator_basic_of_orbit_generic
|
typedef GMap_dart_iterator_basic_of_orbit_generic
|
||||||
<Map_,Const,A1,A2,A3,A4,A5,A6,A7,A8,A9>::type Self;
|
<Map_,Const,A1,A2,A3,A4,A5,A6,A7,A8,A9> Self;
|
||||||
typedef GMap_extend_iterator
|
typedef GMap_extend_iterator
|
||||||
<Map_,typename Get_GMap_dart_iterator_basic_of_orbit
|
<Map_,typename Get_GMap_dart_iterator_basic_of_orbit
|
||||||
<Map_,Const,A2,A3,A4,A5,A6,A7,A8,A9>::type, A1> Base;
|
<Map_,Const,A2,A3,A4,A5,A6,A7,A8,A9>::type, A1> Base;
|
||||||
|
|
@ -693,6 +693,10 @@ namespace CGAL {
|
||||||
typedef Tag_true Basic_iterator; ///< True iff this iterator is basic
|
typedef Tag_true Basic_iterator; ///< True iff this iterator is basic
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
/// Main constructor.
|
||||||
|
GMap_dart_iterator_basic_of_orbit_generic(Map& amap, Dart_handle adart):
|
||||||
|
Base(amap, adart)
|
||||||
|
{}
|
||||||
/// Main constructor.
|
/// Main constructor.
|
||||||
GMap_dart_iterator_basic_of_orbit_generic(Map& amap, Dart_handle adart,
|
GMap_dart_iterator_basic_of_orbit_generic(Map& amap, Dart_handle adart,
|
||||||
size_type amark):
|
size_type amark):
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue