diff options
| author | Even Rouault <even.rouault@spatialys.com> | 2021-03-06 23:24:02 +0100 |
|---|---|---|
| committer | Even Rouault <even.rouault@spatialys.com> | 2021-03-07 00:20:20 +0100 |
| commit | 43e123533412eb161bdd138917d78cf79a510fb6 (patch) | |
| tree | 82829578288b76fce1ceedcdbdfc9b42c5785903 /include | |
| parent | 6dae91bd0626dd91b3b729a8b58e72128d2928e1 (diff) | |
| download | PROJ-43e123533412eb161bdd138917d78cf79a510fb6.tar.gz PROJ-43e123533412eb161bdd138917d78cf79a510fb6.zip | |
BaseObject: add a move assignment operator (CID 314820)
Diffstat (limited to 'include')
| -rw-r--r-- | include/proj/util.hpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/proj/util.hpp b/include/proj/util.hpp index 78115aa1..acc793cc 100644 --- a/include/proj/util.hpp +++ b/include/proj/util.hpp @@ -331,6 +331,7 @@ class PROJ_GCC_DLL BaseObject { protected: PROJ_INTERNAL BaseObject(); PROJ_INTERNAL void assignSelf(const BaseObjectNNPtr &self); + PROJ_INTERNAL BaseObject &operator=(BaseObject &&other); private: PROJ_OPAQUE_PRIVATE_DATA |
