Author: gedmurphy
Date: Wed Sep 23 20:12:44 2015
New Revision: 69333
URL: 
http://svn.reactos.org/svn/reactos?rev=69333&view=rev
Log:
[ATL]
Try to fix gcc build (without having a local install of gcc...)
Modified:
    trunk/reactos/lib/atl/atlcore.h
Modified: trunk/reactos/lib/atl/atlcore.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/atl/atlcore.h?rev=6933…
==============================================================================
--- trunk/reactos/lib/atl/atlcore.h     [iso-8859-1] (original)
+++ trunk/reactos/lib/atl/atlcore.h     [iso-8859-1] Wed Sep 23 20:12:44 2015
@@ -219,15 +219,18 @@
 ///
 // String Resource helper functions
 //
-
+#ifdef _MSC_VER
 #pragma warning(push)
 #pragma warning(disable: 4200)
+#endif
 struct ATLSTRINGRESOURCEIMAGE
 {
     WORD nLength;
     WCHAR achString[];
 };
+#ifdef _MSC_VER
 #pragma warning(pop)
+#endif
 inline const ATLSTRINGRESOURCEIMAGE* _AtlGetStringResourceImage(
     _In_ HINSTANCE hInstance,