diff --git a/source/scriptinterface/ScriptInterface.cpp b/source/scriptinterface/ScriptInterface.cpp index a034608fc9..b858645ca3 100644 --- a/source/scriptinterface/ScriptInterface.cpp +++ b/source/scriptinterface/ScriptInterface.cpp @@ -637,7 +637,8 @@ ScriptInterface_impl::ScriptInterface_impl(const char* nativeScopeName, const sh JS_SetErrorReporter(m_cx, ErrorReporter); u32 options = 0; - options |= JSOPTION_EXTRA_WARNINGS; // "warn on dubious practice" + // FIXME is temporarily disabled for release, but should be reenabled again + // options |= JSOPTION_EXTRA_WARNINGS; // "warn on dubious practice" // We use strict mode to encourage better coding practices and //to get code that can be optimized better by Spidermonkey's JIT compiler. options |= JSOPTION_STRICT_MODE;