diff options
| author | Even Rouault <even.rouault@spatialys.com> | 2019-01-21 19:31:02 +0100 |
|---|---|---|
| committer | Even Rouault <even.rouault@spatialys.com> | 2019-01-22 00:10:23 +0100 |
| commit | ed462b39fb7d9b92a75a069da707f2b7921b2820 (patch) | |
| tree | 61a99c6887ce7d853c7eaf1216d53ee191812a9a /include | |
| parent | a4ec5e49bbcf3de1c779c3ed13389def99dd6a4e (diff) | |
| download | PROJ-ed462b39fb7d9b92a75a069da707f2b7921b2820.tar.gz PROJ-ed462b39fb7d9b92a75a069da707f2b7921b2820.zip | |
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 |
