diff options
| author | Even Rouault <even.rouault@spatialys.com> | 2019-03-25 11:11:21 +0000 |
|---|---|---|
| committer | Even Rouault <even.rouault@spatialys.com> | 2019-03-25 11:44:34 +0000 |
| commit | b900758f13d4be8fabc17edb0290aee08da0a69d (patch) | |
| tree | 63fdbc22f2c31b43d9b91cc823e6623262366f87 /include | |
| parent | 9326a0dca69da0427c1e8d76f5893a332d0c7c8a (diff) | |
| download | PROJ-b900758f13d4be8fabc17edb0290aee08da0a69d.tar.gz PROJ-b900758f13d4be8fabc17edb0290aee08da0a69d.zip | |
crs.cpp: remove non-intented (harmless here) pass by reference of a pointer
Diffstat (limited to 'include')
| -rw-r--r-- | include/proj/crs.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/proj/crs.hpp b/include/proj/crs.hpp index b9594165..ed3463cd 100644 --- a/include/proj/crs.hpp +++ b/include/proj/crs.hpp @@ -503,7 +503,7 @@ class PROJ_GCC_DLL DerivedCRS : virtual public SingleCRS { PROJ_INTERNAL void setDerivingConversionCRS(); PROJ_INTERNAL void baseExportToWKT( - io::WKTFormatter *&formatter, const std::string &keyword, + io::WKTFormatter *formatter, const std::string &keyword, const std::string &baseKeyword) const; // throw(FormattingException) PROJ_INTERNAL bool |
