1.1 --- a/epoc32/include/stdapis/stlport/config/_epilog.h Tue Nov 24 13:55:44 2009 +0000
1.2 +++ b/epoc32/include/stdapis/stlport/config/_epilog.h Tue Mar 16 16:12:26 2010 +0000
1.3 @@ -1,1 +1,33 @@
1.4 -_epilog.h
1.5 +#if defined (_STLP_MSVC) || defined (__ICL) || defined (__BORLANDC__)
1.6 +
1.7 +# if defined (__BORLANDC__)
1.8 +# pragma option pop
1.9 +# pragma option -w-8062
1.10 +# else
1.11 +# if !(defined (_STLP_MSVC) && (_STLP_MSVC < 1200))
1.12 +//# pragma warning (pop)
1.13 +# endif
1.14 +# pragma pack (pop)
1.15 +# endif
1.16 +
1.17 +
1.18 +#elif defined(__sgi) && !defined(__GNUC__) && (_MIPS_SIM != _MIPS_SIM_ABI32)
1.19 +
1.20 +# pragma reset woff 1174
1.21 +# pragma reset woff 1375
1.22 +# pragma reset woff 1209
1.23 +// from iterator_base.h
1.24 +# pragma reset woff 1183
1.25 +
1.26 +#elif defined(__DECCXX)
1.27 +
1.28 +# ifdef __PRAGMA_ENVIRONMENT
1.29 +# pragma __environment __restore
1.30 +# endif
1.31 +
1.32 +#elif defined(__IBMCPP__)
1.33 +
1.34 +#pragma info(restore)
1.35 +
1.36 +#endif
1.37 +