mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-10 14:51:51 +00:00
Disable warning C4200 on VC++
- This warning is about using zero-sized arrays in structs (aka flexible member arrays). It's standard-enough for our purposes, so don't warn about it, since neither GCC nor Clang do.
This commit is contained in:
parent
43fe317dbe
commit
fc97584c69
2 changed files with 4 additions and 2 deletions
|
@ -34,6 +34,10 @@
|
|||
// source files, so we can't use it. So define PATH_MAX to be what MAX_PATH
|
||||
// currently is:
|
||||
#define PATH_MAX 260
|
||||
|
||||
// Disable warning about using unsized arrays in structs. It supports it just
|
||||
// fine, and so do Clang and GCC, but the latter two don't warn about it.
|
||||
#pragma warning(disable:4200)
|
||||
#endif
|
||||
|
||||
#include <limits.h>
|
||||
|
|
|
@ -107,8 +107,6 @@ struct FDoorAnimation
|
|||
FName CloseSound;
|
||||
};
|
||||
|
||||
|
||||
|
||||
// Patches.
|
||||
// A patch holds one or more columns.
|
||||
// Patches are used for sprites and all masked pictures, and we compose
|
||||
|
|
Loading…
Reference in a new issue