As you modify source files that #include stl headers, maybe you could wrap the #includes in pragmas like: <eg> #pragma warning(push,3) #include <someheader> #pragma warning(pop) </eg>
That would remove 3-4k warnings from the Win32 build. Shouldn't be a problem for any compilers - they're supposed to ignore #pragmas that are not recognized.
