From 7b8d1a18a65dae042436847a4b455fc8546f2997 Mon Sep 17 00:00:00 2001 From: William S Fulton Date: Tue, 10 Feb 2015 22:38:00 +0000 Subject: [PATCH] No error for one Javascript node warning until overload_rename testcase is fixed for -Werror=unused-function --- testflags.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testflags.py b/testflags.py index 81276ffcb..23bec9c8d 100755 --- a/testflags.py +++ b/testflags.py @@ -24,7 +24,7 @@ cxxflags = { "go":"-Werror " + cxx_common, "guile":"-Werror " + cxx_common, "java":"-Werror " + cxx_common, - "javascript":"-Werror " + cxx_common, + "javascript":"-Werror " + cxx_common + " -Wno-error=unused-function", # Until overload_rename is fixed for node "lua":"-Werror " + cxx_common, "octave":"-Werror " + cxx_common, "perl5":"-Werror " + cxx_common,