summaryrefslogtreecommitdiffstats
path: root/scons
diff options
context:
space:
mode:
authorzhanyong.wan <zhanyong.wan@861a406c-534a-0410-8894-cb66d6ee9925>2009-09-17 05:04:08 (GMT)
committerzhanyong.wan <zhanyong.wan@861a406c-534a-0410-8894-cb66d6ee9925>2009-09-17 05:04:08 (GMT)
commit12d740faef11779b27b17c558ca92622bc0d2b54 (patch)
tree6e6dc642541619e5761cde41c28b5870360f91de /scons
parentf07dc6b1b1bb16a4956e9880eb081fb01f1c186a (diff)
downloadgoogletest-12d740faef11779b27b17c558ca92622bc0d2b54.zip
googletest-12d740faef11779b27b17c558ca92622bc0d2b54.tar.gz
googletest-12d740faef11779b27b17c558ca92622bc0d2b54.tar.bz2
Makes gtest compile clean with MSVC's warning 4100 (unused formal parameter) enabled.
Diffstat (limited to 'scons')
-rw-r--r--scons/SConstruct.common4
1 files changed, 0 insertions, 4 deletions
diff --git a/scons/SConstruct.common b/scons/SConstruct.common
index 1407bd4..2fc0dde 100644
--- a/scons/SConstruct.common
+++ b/scons/SConstruct.common
@@ -99,10 +99,6 @@ class SConstructHelper:
# Disables warnings that are either uninteresting or
# hard to fix.
- '/wd4100',
- # unreferenced formal parameter. The violation is in
- # gcc's TR1 tuple and hard to fix.
-
'/wd4127',
# constant conditional expression. The macro
# GTEST_IS_NULL_LITERAL_() triggers it and I cannot find