mirror of
https://git.h3cjp.net/H3cJP/citra.git
synced 2025-10-07 03:59:29 +00:00
Fix defines
This commit is contained in:
parent
e0373d679c
commit
0b11a2b790
|
@ -20,23 +20,14 @@
|
|||
#if defined(__ANDROID__)
|
||||
#include <ifaddrs.h>
|
||||
#endif
|
||||
#if defined(_WIN32)
|
||||
#ifdef _MSC_VER
|
||||
#pragma warning(push)
|
||||
#pragma warning(default : all)
|
||||
#else
|
||||
#if defined(_WIN32) && !defined(_MSC_VER)
|
||||
#pragma GCC diagnostic push
|
||||
#pragma GCC diagnostic warning "-Werror"
|
||||
#endif
|
||||
#endif
|
||||
#include <httplib.h>
|
||||
#if defined(_WIN32)
|
||||
#ifdef _MSC_VER
|
||||
#pragma warning(pop)
|
||||
#else
|
||||
#if defined(_WIN32) && !defined(_MSC_VER)
|
||||
#pragma GCC diagnostic pop
|
||||
#endif
|
||||
#endif
|
||||
#include "core/hle/ipc_helpers.h"
|
||||
#include "core/hle/kernel/shared_memory.h"
|
||||
#include "core/hle/service/service.h"
|
||||
|
|
Loading…
Reference in a new issue