00001 #ifndef __MSVC_Unannoy_h__ 00002 #define __MSVC_Unannoy_h__ 00003 00004 // Sorry about this frequently included header non-VC++ users. 00005 // It shouldn't do any harm. 00006 00007 // Warning 4786 is so annoying if you have VC++ 6. 00008 // It produces *pages* of complaints if you use certain STL headers. 00009 // The warning just means that VC++ is unable to produce certain debug 00010 // information - there is nothing wrong with the code. IAM 08/2002 00011 #ifdef _MSC_VER 00012 #pragma warning(disable:4786) 00013 #pragma warning(disable:4018) 00014 #endif 00015 00016 00017 #endif /* #ifndef __MSVC_Unannoy_h__ */
1.4.2