From acefbcde2771cf8ca6449d0b5f2408ef006bd674 Mon Sep 17 00:00:00 2001 From: jules Date: Fri, 16 Sep 2016 13:01:48 +0100 Subject: [PATCH] Fixed a typo that was preventing some config settings showing up in the projucer --- modules/juce_core/juce_core.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/juce_core/juce_core.h b/modules/juce_core/juce_core.h index a1fc52225f..8cbc915c56 100644 --- a/modules/juce_core/juce_core.h +++ b/modules/juce_core/juce_core.h @@ -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.