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