diff options
| author | Even Rouault <even.rouault@mines-paris.org> | 2019-01-22 15:29:38 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-01-22 15:29:38 +0100 |
| commit | 8ff49e280c446421ca4669e851687847b0da7c9a (patch) | |
| tree | 8d0ac07ef77eba5049173f02ced43c0d619328cc /include | |
| parent | 62e680a4d353c380d0104c392c963d2ba902ef36 (diff) | |
| parent | 0b75ef6ae8f61fe9b518e96f9083449e7e2e8971 (diff) | |
| download | PROJ-8ff49e280c446421ca4669e851687847b0da7c9a.tar.gz PROJ-8ff49e280c446421ca4669e851687847b0da7c9a.zip | |
Merge pull request #1231 from rouault/fix_1229
proj_create_crs_to_crs(): defer selection of actual coordinate operation until proj_trans() is called (fixes #1229)
Diffstat (limited to 'include')
| -rw-r--r-- | include/proj/crs.hpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/proj/crs.hpp b/include/proj/crs.hpp index 1c012666..6a09ea78 100644 --- a/include/proj/crs.hpp +++ b/include/proj/crs.hpp @@ -158,8 +158,7 @@ class PROJ_GCC_DLL SingleCRS : public CRS { PROJ_DLL const datum::DatumPtr &datum() PROJ_PURE_DECL; PROJ_DLL const datum::DatumEnsemblePtr &datumEnsemble() PROJ_PURE_DECL; - PROJ_DLL const cs::CoordinateSystemNNPtr & - coordinateSystem() PROJ_PURE_DECL; + PROJ_DLL const cs::CoordinateSystemNNPtr &coordinateSystem() PROJ_PURE_DECL; PROJ_PRIVATE : //! @cond Doxygen_Suppress |
