ReactOS 0.4.15-dev-7934-g1dc8d80
_epilog.h
Go to the documentation of this file.
1#if defined (_STLP_MSVC) || defined (__ICL)
2
3# pragma warning (pop)
4# pragma pack (pop)
5
6#elif defined (__BORLANDC__)
7
8# pragma option pop
9# pragma option -w-pow // -w-8062 Previous options and warnings not restored
10
11#elif defined (__sgi) && !defined (__GNUC__) && (_MIPS_SIM != _MIPS_SIM_ABI32)
12
13# pragma reset woff 1174
14# pragma reset woff 1375
15# pragma reset woff 1209
16/* from iterator_base.h */
17# pragma reset woff 1183
18
19#elif defined (__DECCXX)
20
21# ifdef __PRAGMA_ENVIRONMENT
22# pragma __environment __restore
23# endif
24
25#elif defined (__IBMCPP__)
26
27# pragma info(restore)
28
29#endif