Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygen_prolog.h
Go to the documentation of this file.
00001 00002 #if defined (_STLP_MSVC) || defined (__ICL) 00003 00004 # pragma warning (push) 00005 # include <stl/config/_warnings_off.h> 00006 /* We are forcing the alignment to guaranty that libraries are use 00007 * with the same alignment as the one use to build them. 00008 */ 00009 # if !defined (_WIN64) 00010 # pragma pack(push, 8) 00011 # else 00012 # pragma pack(push, 16) 00013 # endif 00014 00015 #elif defined (__BORLANDC__) 00016 00017 # pragma option push 00018 # pragma option -Vx- -Ve- -a8 -b -pc 00019 # include <stl/config/_warnings_off.h> 00020 00021 #elif defined (__sgi) && !defined (__GNUC__) && (_MIPS_SIM != _MIPS_SIM_ABI32) 00022 00023 # pragma set woff 1209 00024 # pragma set woff 1174 00025 # pragma set woff 1375 00026 /* from iterator_base.h */ 00027 # pragma set woff 1183 00028 00029 #elif defined (__DECCXX) 00030 00031 # ifdef __PRAGMA_ENVIRONMENT 00032 # pragma __environment __save 00033 # pragma __environment __header_defaults 00034 # endif 00035 00036 #elif defined (__IBMCPP__) 00037 /* supress EDC3130: A constant is being used as a conditional expression */ 00038 # pragma info(nocnd) 00039 #elif defined (__WATCOMCPLUSPLUS__) 00040 # pragma warning 604 10 /* must lookahead to determine... */ 00041 # pragma warning 594 10 /* resolved as declaration/type */ 00042 # pragma warning 595 10 /* resolved as an expression */ 00043 #endif Generated on Sun May 27 2012 04:29:20 for ReactOS by
1.7.6.1
|