diff options
author | SupSuper | 2018-12-16 23:02:06 +0000 |
---|---|---|
committer | Filippos Karapetis | 2018-12-17 12:28:33 +0200 |
commit | 272d4105b274391427f92b25b80cbfe68c7997db (patch) | |
tree | c61d43563b59f4e68f914b02fc7f9391b7133c6d /backends/cloud/dropbox | |
parent | d0512db25ce5bbd8f31151c3d2374f344f77f006 (diff) | |
download | scummvm-rg350-272d4105b274391427f92b25b80cbfe68c7997db.tar.gz scummvm-rg350-272d4105b274391427f92b25b80cbfe68c7997db.tar.bz2 scummvm-rg350-272d4105b274391427f92b25b80cbfe68c7997db.zip |
WIN32: Fix libcurl redefining ARRAYSIZE
libcurl pulls in Windows headers, so let's include it first to avoid clashing with common headers
Diffstat (limited to 'backends/cloud/dropbox')
-rw-r--r-- | backends/cloud/dropbox/dropboxstorage.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/cloud/dropbox/dropboxstorage.cpp b/backends/cloud/dropbox/dropboxstorage.cpp index c2ca55c083..b856c6cb2c 100644 --- a/backends/cloud/dropbox/dropboxstorage.cpp +++ b/backends/cloud/dropbox/dropboxstorage.cpp @@ -22,6 +22,7 @@ #define FORBIDDEN_SYMBOL_ALLOW_ALL +#include <curl/curl.h> #include "backends/cloud/dropbox/dropboxstorage.h" #include "backends/cloud/dropbox/dropboxcreatedirectoryrequest.h" #include "backends/cloud/dropbox/dropboxinforequest.h" @@ -33,7 +34,6 @@ #include "common/config-manager.h" #include "common/debug.h" #include "common/json.h" -#include <curl/curl.h> #ifdef ENABLE_RELEASE #include "dists/clouds/cloud_keys.h" |