mirror of
https://github.com/love2d/megasource.git
synced 2026-08-20 04:30:45 +02:00
Update OpenAL-soft to 1.21.1
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
#ifndef PRAGMADEFS_H
|
||||
#define PRAGMADEFS_H
|
||||
|
||||
#if defined(_MSC_VER)
|
||||
#define DIAGNOSTIC_PUSH __pragma(warning(push))
|
||||
#define DIAGNOSTIC_POP __pragma(warning(pop))
|
||||
#define std_pragma(...)
|
||||
#define msc_pragma __pragma
|
||||
#else
|
||||
#if defined(__GNUC__) || defined(__clang__)
|
||||
#define DIAGNOSTIC_PUSH _Pragma("GCC diagnostic push")
|
||||
#define DIAGNOSTIC_POP _Pragma("GCC diagnostic pop")
|
||||
#else
|
||||
#define DIAGNOSTIC_PUSH
|
||||
#define DIAGNOSTIC_POP
|
||||
#endif
|
||||
#define std_pragma _Pragma
|
||||
#define msc_pragma(...)
|
||||
#endif
|
||||
|
||||
#endif /* PRAGMADEFS_H */
|
||||
Reference in New Issue
Block a user