mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-16 01:11:44 +00:00
Fix build on platforms not magically #defining UNREFERENCED_PARAMETER. DONT_BUILD.
git-svn-id: https://svn.eduke32.com/eduke32@4785 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
944d64215e
commit
07bf374269
1 changed files with 1 additions and 1 deletions
|
@ -26,7 +26,7 @@
|
||||||
# define __has_extension __has_feature // Compatibility with pre-3.0 compilers.
|
# define __has_extension __has_feature // Compatibility with pre-3.0 compilers.
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(_MSC_VER) && _MSC_FULL_VER < 180031101
|
#if !defined(_MSC_VER) || _MSC_FULL_VER < 180031101
|
||||||
#ifdef UNREFERENCED_PARAMETER
|
#ifdef UNREFERENCED_PARAMETER
|
||||||
#undef UNREFERENCED_PARAMETER
|
#undef UNREFERENCED_PARAMETER
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue