1 #ifndef __MSVC_Unannoy_h__
2 #define __MSVC_Unannoy_h__
4 // Sorry about this frequently included header non-VC++ users.
5 // It shouldn't do any harm.
7 // Warning 4786 is so annoying if you have VC++ 6.
8 // It produces *pages* of complaints if you use certain STL headers.
9 // The warning just means that VC++ is unable to produce certain debug
10 // information - there is nothing wrong with the code. IAM 08/2002
12 #pragma warning(disable:4786)
13 #pragma warning(disable:4018)
15 #pragma warning(disable:4996) // warning C4996: 'fopen' was declared deprecated
18 #endif /* #ifndef __MSVC_Unannoy_h__ */