diff options
| author | Even Rouault <even.rouault@spatialys.com> | 2020-03-17 12:03:09 +0100 |
|---|---|---|
| committer | Even Rouault <even.rouault@spatialys.com> | 2020-03-17 12:03:09 +0100 |
| commit | ac37a9127a96175b38d0a2a693f1a6219d4180af (patch) | |
| tree | 3a120075bedd757e516f018fabbf5d66b2cd1587 /src/units.cpp | |
| parent | 781dedec1fc3b8452d12f67f3c8ddd9d45f724f4 (diff) | |
| download | PROJ-ac37a9127a96175b38d0a2a693f1a6219d4180af.tar.gz PROJ-ac37a9127a96175b38d0a2a693f1a6219d4180af.zip | |
Deprecate proj_list_angular_units(). Follow-up of https://github.com/OSGeo/PROJ/pull/2065
Diffstat (limited to 'src/units.cpp')
| -rw-r--r-- | src/units.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/units.cpp b/src/units.cpp index 36f2d4c7..53f43163 100644 --- a/src/units.cpp +++ b/src/units.cpp @@ -58,6 +58,12 @@ pj_angular_units[] = { {nullptr, nullptr, nullptr, 0.0} }; +// For internal use +const PJ_UNITS *pj_list_angular_units() +{ + return pj_angular_units; +} + const PJ_UNITS *proj_list_angular_units() { return pj_angular_units; |
