mirror of https://github.com/CGAL/cgal
Add a missing call to base constructor
This commit is contained in:
parent
6a2052b68e
commit
16be3009ca
|
|
@ -459,7 +459,7 @@ namespace CGAL {
|
|||
}
|
||||
|
||||
// Copy constructor from a map having exactly the same type.
|
||||
Combinatorial_map_base (const Self & amap)
|
||||
Combinatorial_map_base (const Self & amap): Combinatorial_map_base()
|
||||
{ copy(amap); }
|
||||
|
||||
// "Copy constructor" from a map having different type.
|
||||
|
|
|
|||
|
|
@ -423,7 +423,7 @@ namespace CGAL {
|
|||
}
|
||||
|
||||
// Copy constructor from a map having exactly the same type.
|
||||
Generalized_map_base (const Self & amap) : Generalized_map_base()
|
||||
Generalized_map_base(const Self & amap) : Generalized_map_base()
|
||||
{ copy(amap); }
|
||||
|
||||
// "Copy constructor" from a map having different type.
|
||||
|
|
|
|||
Loading…
Reference in New Issue