diff options
| author | Even Rouault <even.rouault@spatialys.com> | 2019-06-11 11:45:09 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-06-11 11:45:09 +0200 |
| commit | 7bc53f865f35162469e5b59633a9bad0794bd367 (patch) | |
| tree | 7d3809523ec93103a30f816903293b49a8e7244d /src | |
| parent | 34284cb9b65e7a5577dafb3e2392555a8f14240f (diff) | |
| parent | 839a3123d73028178375d65da0e46065375346fc (diff) | |
| download | PROJ-7bc53f865f35162469e5b59633a9bad0794bd367.tar.gz PROJ-7bc53f865f35162469e5b59633a9bad0794bd367.zip | |
Merge pull request #1513 from rouault/fix_gcc493_compilation
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 |
