mirror of
https://github.com/Detanup01/gbe_fork.git
synced 2024-11-27 05:04:01 +08:00
wrap proto includes to avoid build warnings
This commit is contained in:
parent
eb78b5bf0b
commit
706422661a
@ -237,7 +237,7 @@ static inline void reset_LastError()
|
||||
|
||||
// Emulator includes
|
||||
// add them here after the inline functions definitions
|
||||
#include "net.pb.h"
|
||||
#include "include.wrap.net.pb.h"
|
||||
#include "settings.h"
|
||||
#include "local_storage.h"
|
||||
#include "network.h"
|
||||
|
14
dll/dll/include.wrap.net.pb.h
Normal file
14
dll/dll/include.wrap.net.pb.h
Normal file
@ -0,0 +1,14 @@
|
||||
|
||||
#if defined(__linux__) || defined(linux) || defined(GNUC) || defined(__MINGW32__) || defined(__MINGW64__)
|
||||
// https://gcc.gnu.org/onlinedocs/gcc/Diagnostic-Pragmas.html
|
||||
// https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wall
|
||||
#pragma GCC diagnostic push
|
||||
#pragma GCC diagnostic ignored "-Wall"
|
||||
#include "net.pb.h"
|
||||
#pragma GCC diagnostic pop
|
||||
#else
|
||||
// https://learn.microsoft.com/en-us/cpp/preprocessor/warning?view=msvc-170#push-and-pop
|
||||
#pragma warning(push, 0)
|
||||
#include "net.pb.h"
|
||||
#pragma warning(pop)
|
||||
#endif
|
Loading…
Reference in New Issue
Block a user