Przeglądaj źródła

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.
Ryan Foster 1 rok temu
rodzic
commit
3fb529c0ee
1 zmienionych plików z 3 dodań i 3 usunięć
  1. 3 3
      libobs/util/c99defs.h

+ 3 - 3
libobs/util/c99defs.h

@@ -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")