Add a missing call to base constructor

This commit is contained in:
Guillaume Damiand 2020-04-05 19:10:32 +02:00
parent 6a2052b68e
commit 16be3009ca
2 changed files with 2 additions and 2 deletions

View File

@ -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.

View File

@ -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.