summaryrefslogtreecommitdiff
path: root/inputmethods/dasher/MSVC_Unannoy.h
Unidiff
Diffstat (limited to 'inputmethods/dasher/MSVC_Unannoy.h') (more/less context) (ignore whitespace changes)
-rw-r--r--inputmethods/dasher/MSVC_Unannoy.h17
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 @@
1#ifndef __MSVC_Unannoy_h__
2#define __MSVC_Unannoy_h__
3
4// Sorry about this frequently included header non-VC++ users.
5// It shouldn't do any harm.
6
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
11#ifdef _MSC_VER
12#pragma warning(disable:4786)
13#pragma warning(disable:4018)
14#endif
15
16
17#endif /* #ifndef __MSVC_Unannoy_h__ */