Diffstat (limited to 'inputmethods/dasher/MSVC_Unannoy.h') (more/less context) (ignore whitespace changes)
-rw-r--r-- | inputmethods/dasher/MSVC_Unannoy.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/inputmethods/dasher/MSVC_Unannoy.h b/inputmethods/dasher/MSVC_Unannoy.h new file mode 100644 index 0000000..2167eec --- a/dev/null +++ b/inputmethods/dasher/MSVC_Unannoy.h @@ -0,0 +1,17 @@ +#ifndef __MSVC_Unannoy_h__ +#define __MSVC_Unannoy_h__ + +// Sorry about this frequently included header non-VC++ users. +// It shouldn't do any harm. + +// Warning 4786 is so annoying if you have VC++ 6. +// It produces *pages* of complaints if you use certain STL headers. +// The warning just means that VC++ is unable to produce certain debug +// information - there is nothing wrong with the code. IAM 08/2002 +#ifdef _MSC_VER +#pragma warning(disable:4786) +#pragma warning(disable:4018) +#endif + + +#endif /* #ifndef __MSVC_Unannoy_h__ */ |