1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Fixed a typo that was preventing some config settings showing up in the projucer

This commit is contained in:
jules 2016-09-16 13:01:48 +01:00
parent 9fa0d49be7
commit acefbcde27

View file

@ -148,7 +148,7 @@
#endif
/* Config: JUCE_CATCH_UNHANDLED_EXCEPTIONS
/** Config: JUCE_CATCH_UNHANDLED_EXCEPTIONS
If enabled, this will add some exception-catching code to forward unhandled exceptions
to your JUCEApplicationBase::unhandledException() callback.
*/
@ -156,7 +156,7 @@
//#define JUCE_CATCH_UNHANDLED_EXCEPTIONS 1
#endif
/* Config: JUCE_ALLOW_STATIC_NULL_VARIABLES
/** Config: JUCE_ALLOW_STATIC_NULL_VARIABLES
If disabled, this will turn off dangerous static globals like String::empty, var::null, etc
which can cause nasty order-of-initialisation problems if they are referenced during static
constructor code.