diff options
| author | Even Rouault <even.rouault@spatialys.com> | 2020-11-26 21:12:00 +0100 |
|---|---|---|
| committer | Even Rouault <even.rouault@spatialys.com> | 2020-11-26 21:12:00 +0100 |
| commit | 83754e1f77bc407f6fa5fd34e07d3625e619ce41 (patch) | |
| tree | 89be3416c8e660b1daeba89a512221a0a448ba24 /src/mutex.cpp | |
| parent | 3cb26a406a7e1a964f5f3b5caf3c624222664fb2 (diff) | |
| download | PROJ-83754e1f77bc407f6fa5fd34e07d3625e619ce41.tar.gz PROJ-83754e1f77bc407f6fa5fd34e07d3625e619ce41.zip | |
Fix mingw_w64 warning about pj_acquire_lock() prototype being missing
Diffstat (limited to 'src/mutex.cpp')
| -rw-r--r-- | src/mutex.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mutex.cpp b/src/mutex.cpp index 9fc78acf..b1a23ccd 100644 --- a/src/mutex.cpp +++ b/src/mutex.cpp @@ -33,8 +33,8 @@ #include "proj.h" #ifndef _WIN32 #include "proj_config.h" -#include "proj_internal.h" #endif +#include "proj_internal.h" /* on win32 we always use win32 mutexes, even if pthreads are available */ #if defined(_WIN32) && !defined(MUTEX_stub) |
