From 485867fdafc24d1bcd95474add20ed4b6a6535fe Mon Sep 17 00:00:00 2001 From: Ged Murphy Date: Mon, 5 Jun 2006 19:00:52 +0000 Subject: [PATCH] silence some rather annoying alignment errors when building with msvc svn path=/trunk/; revision=22240 --- reactos/include/poppack.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/reactos/include/poppack.h b/reactos/include/poppack.h index 438dc73f092..a59ce8d9848 100644 --- a/reactos/include/poppack.h +++ b/reactos/include/poppack.h @@ -1,4 +1,7 @@ #ifndef RC_INVOKED +#if ( _MSC_VER >= 800 ) +#pragma warning(disable:4103) +#endif // _MSC_VER # if ( __FreeBSD__ == 5 ) # pragma pack(4) # else