diff options
| author | Even Rouault <even.rouault@spatialys.com> | 2019-06-11 10:09:32 +0200 |
|---|---|---|
| committer | Even Rouault <even.rouault@spatialys.com> | 2019-06-11 10:09:32 +0200 |
| commit | 839a3123d73028178375d65da0e46065375346fc (patch) | |
| tree | 1b83daada6d65c9102cf9d8af24732238a5e9672 /src | |
| parent | f8438ec596cce6f4b3e0c19092df9eaf22e93cd3 (diff) | |
| download | PROJ-839a3123d73028178375d65da0e46065375346fc.tar.gz PROJ-839a3123d73028178375d65da0e46065375346fc.zip | |
Fix compilation error with gcc 4.9.3 (fixes #1512)
Diffstat (limited to 'src')
| -rw-r--r-- | src/iso19111/coordinateoperation.cpp | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/iso19111/coordinateoperation.cpp b/src/iso19111/coordinateoperation.cpp index 2686f515..1982e234 100644 --- a/src/iso19111/coordinateoperation.cpp +++ b/src/iso19111/coordinateoperation.cpp @@ -564,7 +564,14 @@ GridDescription::~GridDescription() = default; GridDescription::GridDescription(const GridDescription &) = default; -GridDescription::GridDescription(GridDescription &&) noexcept = default; +GridDescription::GridDescription(GridDescription &&other) noexcept + : shortName(std::move(other.shortName)), + fullName(std::move(other.fullName)), + packageName(std::move(other.packageName)), + url(std::move(other.url)), + directDownload(other.directDownload), + openLicense(other.openLicense), + available(other.available) {} //! @endcond |
