1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/epoc32/include/tools/stlport/stl/_ioserr.h Tue Mar 16 16:12:26 2010 +0000
1.3 @@ -0,0 +1,12 @@
1.4 +/*
1.5 + * This file is included in every header that needs the STLport library to be
1.6 + * built; the header files mostly are the iostreams-headers. The file checks for
1.7 + * _STLP_USE_NO_IOSTREAMS or _STLP_NO_IOSTREAMS being not defined, so that the
1.8 + * iostreams part of STLport cannot be used when the symbols were defined
1.9 + * accidentally.
1.10 + */
1.11 +#if defined (_STLP_NO_IOSTREAMS)
1.12 +# error STLport iostreams header cannot be used; you chose not to use iostreams in the STLport configuration file (stlport/stl/config/user_config.h).
1.13 +#elif defined (_STLP_USE_NO_IOSTREAMS )
1.14 +# error STLport iostreams header cannot be used; your compiler do not support it.
1.15 +#endif