mirror of
https://github.com/obsproject/obs-studio.git
synced 2026-08-29 02:03:03 +08:00
libobs: Use std _Pragma with MSVC
Instead of using the Microsoft-specific __pragma keyword, use the standard _Pragma directive, which is now supported in C11 and C++11 /std modes.
This commit is contained in:
@@ -52,9 +52,9 @@
|
||||
#endif
|
||||
|
||||
#ifdef _MSC_VER
|
||||
#define PRAGMA_WARN_PUSH __pragma(warning(push))
|
||||
#define PRAGMA_WARN_POP __pragma(warning(pop))
|
||||
#define PRAGMA_WARN_DEPRECATION __pragma(warning(disable : 4996))
|
||||
#define PRAGMA_WARN_PUSH _Pragma("warning(push)")
|
||||
#define PRAGMA_WARN_POP _Pragma("warning(pop)")
|
||||
#define PRAGMA_WARN_DEPRECATION _Pragma("warning(disable: 4996)")
|
||||
#elif defined(__clang__)
|
||||
#define PRAGMA_WARN_PUSH _Pragma("clang diagnostic push")
|
||||
#define PRAGMA_WARN_POP _Pragma("clang diagnostic pop")
|
||||
|
||||
Reference in New Issue
Block a user