You are viewing a plain text version of this content. The canonical link for it is here.
Posted to c-users@xalan.apache.org by Di...@tais.com on 2002/07/23 22:25:35 UTC

YAUR (yet-another-user-request)

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.