summaryrefslogtreecommitdiff
path: root/library/pch.h
diff options
context:
space:
mode:
Diffstat (limited to 'library/pch.h')
-rw-r--r--library/pch.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/library/pch.h b/library/pch.h
index 1fb71f00..573ae73f 100644
--- a/library/pch.h
+++ b/library/pch.h
@@ -18,6 +18,10 @@ do NOT use in release build!
#define WX_PRECOMP
#endif
+#ifdef _MSC_VER
+#pragma warning(disable:4996) //"warning C4996: 'std::copy': Function call with parameters that may be unsafe"
+#endif
+
#include <wx/wxprec.h>
//#####################################################
bgstack15