1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-16 00:34:19 +00:00

Warnings: Add warning-wrangling header

This commit is contained in:
reuk 2020-03-21 16:07:27 +00:00
parent 175644e8c1
commit 5f348c3040
93 changed files with 581 additions and 903 deletions

View file

@ -54,10 +54,7 @@ namespace TokenTypes
JUCE_DECLARE_JS_TOKEN (identifier, "$identifier")
}
#if JUCE_MSVC
#pragma warning (push)
#pragma warning (disable: 4702)
#endif
JUCE_BEGIN_IGNORE_WARNINGS_MSVC (4702)
//==============================================================================
struct JavascriptEngine::RootObject : public DynamicObject
@ -1913,8 +1910,6 @@ const NamedValueSet& JavascriptEngine::getRootObjectProperties() const noexcept
return root->getProperties();
}
#if JUCE_MSVC
#pragma warning (pop)
#endif
JUCE_END_IGNORE_WARNINGS_MSVC
} // namespace juce