From 1d792fe0f4e1970dc9377bf59d82044f5a3c2213 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Mon, 28 Oct 2002 06:40:47 +0000 Subject: [PATCH] disable noisy warning --- stepmania/src/RageTypes.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/stepmania/src/RageTypes.h b/stepmania/src/RageTypes.h index 8280d34882..0829d883b4 100644 --- a/stepmania/src/RageTypes.h +++ b/stepmania/src/RageTypes.h @@ -11,6 +11,10 @@ ----------------------------------------------------------------------------- */ +/* nonstandard extension used : nameless struct/union + * It is, in fact, nonstandard. G++ 3.x can handle it. 2.95.x can not. XXX */ +#pragma warning (push) +#pragma warning (disable : 4201) struct RageVector2 { @@ -222,5 +226,6 @@ public: }; }; +#pragma warning (pop) #endif \ No newline at end of file