aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEven Rouault <even.rouault@spatialys.com>2019-06-11 11:45:42 +0200
committerGitHub <noreply@github.com>2019-06-11 11:45:42 +0200
commitb5341a102a0442ebeb3c7e89dd769c5b03000e8c (patch)
tree700bd7c47eb9ff37e22085dd2d4bcaaaa437cb52
parent148e9e9c7b2e0077297a53d7eb648e6a3b6a92e7 (diff)
parentb17b34b969a226c7b91f9a3173300e86d47b0bc7 (diff)
downloadPROJ-b5341a102a0442ebeb3c7e89dd769c5b03000e8c.tar.gz
PROJ-b5341a102a0442ebeb3c7e89dd769c5b03000e8c.zip
Merge pull request #1514 from OSGeo/backport-1513-to-6.1
[Backport 6.1] Fix compilation error with gcc 4.9.3 (fixes #1512)
-rw-r--r--src/iso19111/coordinateoperation.cpp9
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