aboutsummaryrefslogtreecommitdiff
path: root/include/proj/util.hpp
diff options
context:
space:
mode:
authorEven Rouault <even.rouault@spatialys.com>2020-09-04 18:30:24 +0200
committerGitHub <noreply@github.com>2020-09-04 18:30:24 +0200
commit7c2718623dd6607f49b557cd065aece9a4a00255 (patch)
tree700f0305f312c2a4e70b558d4fe95e5701c9e7f7 /include/proj/util.hpp
parent50bf1180df522e63a47323975535e5fb7bcd390c (diff)
parent97f06e4c5ed8bb6cf1b7b2a8419131e9280747a1 (diff)
downloadPROJ-7c2718623dd6607f49b557cd065aece9a4a00255.tar.gz
PROJ-7c2718623dd6607f49b557cd065aece9a4a00255.zip
Merge pull request #2347 from saprykin/master
Fix compiling warnings when using GCC 4.8.x
Diffstat (limited to 'include/proj/util.hpp')
-rw-r--r--include/proj/util.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/proj/util.hpp b/include/proj/util.hpp
index 84c93366..3d85e579 100644
--- a/include/proj/util.hpp
+++ b/include/proj/util.hpp
@@ -692,7 +692,7 @@ class CodeList {
//! @endcond
protected:
explicit CodeList(const std::string &nameIn) : name_(nameIn) {}
- CodeList(const CodeList &other) = default;
+ CodeList(const CodeList &) = default;
CodeList &operator=(const CodeList &other);
private: