diff options
| author | Even Rouault <even.rouault@spatialys.com> | 2019-03-25 12:11:21 +0100 |
|---|---|---|
| committer | Even Rouault <even.rouault@spatialys.com> | 2019-03-25 12:44:34 +0100 |
| commit | 72f0e8a895a861e4323cac61b73f807c8a5f1c0d (patch) | |
| tree | b42cbfcbdaa95f971f841a85486940dbbbb6d57a /include | |
| parent | d53911f100cfd64a77ed8aa783c0538003dbfa2d (diff) | |
| download | PROJ-72f0e8a895a861e4323cac61b73f807c8a5f1c0d.tar.gz PROJ-72f0e8a895a861e4323cac61b73f807c8a5f1c0d.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 |
