summaryrefslogtreecommitdiff
path: root/coreconf/WIN32.mk
diff options
context:
space:
mode:
authorBrian Smith <bsmith@mozilla.com>2013-03-22 19:25:18 -0700
committerBrian Smith <bsmith@mozilla.com>2013-03-22 19:25:18 -0700
commit37ffceebadfe073d4a067359d317e54c52f3864b (patch)
tree38ed3bdddfe2a79209bcf2d9c42bd084fdb81a30 /coreconf/WIN32.mk
parent4e9d4d785d3344b1cf91e232b322329e5280fd18 (diff)
downloadnss-hg-37ffceebadfe073d4a067359d317e54c52f3864b.tar.gz
Bug 854729: Add const to many certificate-related NSS functions, r=ryan.sleevi
Diffstat (limited to 'coreconf/WIN32.mk')
-rw-r--r--coreconf/WIN32.mk3
1 files changed, 2 insertions, 1 deletions
diff --git a/coreconf/WIN32.mk b/coreconf/WIN32.mk
index b5acb14e8..0a5e22612 100644
--- a/coreconf/WIN32.mk
+++ b/coreconf/WIN32.mk
@@ -170,7 +170,7 @@ ifneq ($(_MSC_VER),$(_MSC_VER_6))
# Convert certain deadly warnings to errors (see list at end of file)
OS_CFLAGS += -we4002 -we4003 -we4004 -we4006 -we4009 -we4013 \
-we4015 -we4028 -we4033 -we4035 -we4045 -we4047 -we4053 -we4054 -we4063 \
- -we4064 -we4078 -we4087 -we4098 -we4390 -we4551 -we4553 -we4715
+ -we4064 -we4078 -we4087 -we4090 -we4098 -we4390 -we4551 -we4553 -we4715
endif # !MSVC6
endif # NS_USE_GCC
@@ -348,6 +348,7 @@ endif
# 4064: switch of incomplete enum 'identifier'
# 4078: case constant 'value' too big for the type of the switch expression
# 4087: 'function' : declared with 'void' parameter list
+# 4090: 'function' : different 'const' qualifiers
# 4098: 'function' : void function returning a value
# 4390: ';' : empty controlled statement found; is this the intent?
# 4541: RTTI train wreck