diff options
author | zhanyong.wan <zhanyong.wan@861a406c-534a-0410-8894-cb66d6ee9925> | 2009-09-17 05:04:08 +0000 |
---|---|---|
committer | zhanyong.wan <zhanyong.wan@861a406c-534a-0410-8894-cb66d6ee9925> | 2009-09-17 05:04:08 +0000 |
commit | 12d740faef11779b27b17c558ca92622bc0d2b54 (patch) | |
tree | 6e6dc642541619e5761cde41c28b5870360f91de /scons | |
parent | f07dc6b1b1bb16a4956e9880eb081fb01f1c186a (diff) | |
download | googletest-12d740faef11779b27b17c558ca92622bc0d2b54.tar.gz googletest-12d740faef11779b27b17c558ca92622bc0d2b54.tar.bz2 googletest-12d740faef11779b27b17c558ca92622bc0d2b54.zip |
Makes gtest compile clean with MSVC's warning 4100 (unused formal parameter) enabled.
Diffstat (limited to 'scons')
-rw-r--r-- | scons/SConstruct.common | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/scons/SConstruct.common b/scons/SConstruct.common index 1407bd46..2fc0dde5 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 |