Skip to content

Commit 31ded51

Browse files
committed
Disable temporarily warnings about not handled enums
1 parent 45e35df commit 31ded51

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

wscript

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def configure(conf):
2323
conf.check_tool("node_addon")
2424

2525
# Enables all the warnings that are easy to avoid
26-
conf.env.append_unique('CXXFLAGS', ["-Wall"])
26+
conf.env.append_unique('CXXFLAGS', ["-Wall", "-Wno-switch"])
2727
if Options.options.warn:
2828
# Extra warnings
2929
conf.env.append_unique('CXXFLAGS', ["-Wextra"])

0 commit comments

Comments
 (0)