mirror of
https://github.com/Xaymar/obs-StreamFX
synced 2024-11-11 06:15:05 +00:00
9 lines
182 B
C++
9 lines
182 B
C++
|
#if defined(__clang__)
|
||
|
#pragma clang diagnostic pop
|
||
|
#elif defined(__GNUC__) || defined(__GNUG__)
|
||
|
#pragma gcc diagnostic pop
|
||
|
#elif defined(_MSC_VER)
|
||
|
#pragma warning(pop)
|
||
|
#else
|
||
|
#endif
|