diff options
| author | Momtchil Momtchev <momtchil@momtchev.com> | 2021-11-04 23:52:34 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-04 23:52:34 +0100 |
| commit | 792884b035b9ed6f4e4b674e059231957f8a72f2 (patch) | |
| tree | be81d1131fc9225f84ccaedaa67b48b6a5e08ea9 /src/strerrno.cpp | |
| parent | bc1c85c0ff73f62fa37f2b52616440eb5b68fa83 (diff) | |
| download | PROJ-792884b035b9ed6f4e4b674e059231957f8a72f2.tar.gz PROJ-792884b035b9ed6f4e4b674e059231957f8a72f2.zip | |
Remove useless PROJ_DLL uses in .cpp files (#2920)
Diffstat (limited to 'src/strerrno.cpp')
| -rw-r--r-- | src/strerrno.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/strerrno.cpp b/src/strerrno.cpp index f94de55d..e3891a79 100644 --- a/src/strerrno.cpp +++ b/src/strerrno.cpp @@ -34,7 +34,7 @@ static const struct { PROJ_ERR_OTHER_NETWORK_ERROR, _("Network error when accessing a remote resource") }, }; -const char PROJ_DLL * proj_context_errno_string(PJ_CONTEXT* ctx, int err) +const char * proj_context_errno_string(PJ_CONTEXT* ctx, int err) { if( ctx == nullptr ) ctx = pj_get_default_ctx(); |
