summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAndreas Rumpf <rumpf_a@web.de>2016-08-11 23:00:02 +0200
committerGitHub <noreply@github.com>2016-08-11 23:00:02 +0200
commitf6671b5bfdf1d24cfe026bfab5be06c309b8ba17 (patch)
tree6c8ddaa6116d749084394e88080188a036bcb3e9
parent40de07f63c43622a510d66caabf2f3b45419e627 (diff)
parent5b7efba3ae7cbb3371a49cf953aaefa1d25369fd (diff)
downloadNim-f6671b5bfdf1d24cfe026bfab5be06c309b8ba17.tar.gz
Merge pull request #4591 from jangko/vs2010_c4090_warning
fixed #4590 Visual Studio C4090 warning
-rw-r--r--lib/nimbase.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/nimbase.h b/lib/nimbase.h
index 3635ca006..37f8f5c3d 100644
--- a/lib/nimbase.h
+++ b/lib/nimbase.h
@@ -44,7 +44,7 @@ __clang__
 #if defined(_MSC_VER)
 #  pragma warning(disable: 4005 4100 4101 4189 4191 4200 4244 4293 4296 4309)
 #  pragma warning(disable: 4310 4365 4456 4477 4514 4574 4611 4668 4702 4706)
-#  pragma warning(disable: 4710 4711 4774 4800 4820 4996)
+#  pragma warning(disable: 4710 4711 4774 4800 4820 4996 4090)
 #endif
 /* ------------------------------------------------------------------------- */