+ add compiler generated move ctor
This commit is contained in:
parent
12602c7e9c
commit
f76c5576b6
1 changed files with 4 additions and 0 deletions
|
@ -118,11 +118,15 @@ public:
|
|||
*/
|
||||
Map(Map const& rhs);
|
||||
|
||||
// let compiler generate move ctor
|
||||
Map(Map && other) = default;
|
||||
|
||||
/*! \brief Assignment operator
|
||||
*
|
||||
* TODO: to be documented
|
||||
*
|
||||
*/
|
||||
|
||||
Map& operator=(Map rhs);
|
||||
|
||||
/*! \brief Get all styles
|
||||
|
|
Loading…
Add table
Reference in a new issue