_prolog.h 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. #if defined (_STLP_MSVC) || defined (__ICL)
  2. # pragma warning (push)
  3. # include <stl/config/_warnings_off.h>
  4. /* We are forcing the alignment to guaranty that libraries are use
  5. * with the same alignment as the one use to build them.
  6. */
  7. # if !defined (_WIN64)
  8. # pragma pack(push, 8)
  9. # else
  10. # pragma pack(push, 16)
  11. # endif
  12. #elif defined (__BORLANDC__)
  13. # pragma option push
  14. # pragma option -Vx- -Ve- -a8 -b -pc
  15. # include <stl/config/_warnings_off.h>
  16. #elif defined (__sgi) && !defined (__GNUC__) && (_MIPS_SIM != _MIPS_SIM_ABI32)
  17. # pragma set woff 1209
  18. # pragma set woff 1174
  19. # pragma set woff 1375
  20. /* from iterator_base.h */
  21. # pragma set woff 1183
  22. #elif defined (__DECCXX)
  23. # ifdef __PRAGMA_ENVIRONMENT
  24. # pragma __environment __save
  25. # pragma __environment __header_defaults
  26. # endif
  27. #elif defined (__IBMCPP__)
  28. /* supress EDC3130: A constant is being used as a conditional expression */
  29. # pragma info(nocnd)
  30. #elif defined (__WATCOMCPLUSPLUS__)
  31. # pragma warning 604 10 /* must lookahead to determine... */
  32. # pragma warning 594 10 /* resolved as declaration/type */
  33. # pragma warning 595 10 /* resolved as an expression */
  34. #endif