mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
moved all stuff to github
This commit is contained in:
parent
095fbeeb67
commit
296ae46ed8
388 changed files with 95937 additions and 469 deletions
14
contrib/epee/include/pragma_comp_defs.h
Normal file
14
contrib/epee/include/pragma_comp_defs.h
Normal file
|
@ -0,0 +1,14 @@
|
|||
#pragma once
|
||||
|
||||
#if defined(__GNUC__)
|
||||
#define PRAGMA_WARNING_PUSH _Pragma("GCC diagnostic push")
|
||||
#define PRAGMA_WARNING_POP _Pragma("GCC diagnostic pop")
|
||||
#define PRAGMA_WARNING_DISABLE_VS(w)
|
||||
#define PRAGMA_GCC(w) _Pragma(w)
|
||||
#elif defined(_MSC_VER)
|
||||
#define PRAGMA_WARNING_PUSH __pragma(warning( push ))
|
||||
#define PRAGMA_WARNING_POP __pragma(warning( pop ))
|
||||
#define PRAGMA_WARNING_DISABLE_VS(w) __pragma( warning ( disable: w ))
|
||||
//#define PRAGMA_WARNING_DISABLE_GCC(w)
|
||||
#define PRAGMA_GCC(w)
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue