From 30b62cc6be6294642c4501c281e536e8f888afe7 Mon Sep 17 00:00:00 2001 From: Sudara Date: Fri, 13 Jun 2025 18:12:26 +0200 Subject: [PATCH] Docs: Hide noisy/excessive doxygen references to jassert/jassertfalse --- modules/juce_core/system/juce_PlatformDefs.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/juce_core/system/juce_PlatformDefs.h b/modules/juce_core/system/juce_PlatformDefs.h index 3312736598..cdc27c55f8 100644 --- a/modules/juce_core/system/juce_PlatformDefs.h +++ b/modules/juce_core/system/juce_PlatformDefs.h @@ -160,6 +160,7 @@ namespace juce /** This will always cause an assertion failure. It is only compiled in a debug build, (unless JUCE_LOG_ASSERTIONS is enabled for your build). @see jassert + @hiderefby */ #define jassertfalse JUCE_BLOCK_WITH_FORCED_SEMICOLON (JUCE_LOG_CURRENT_ASSERTION; if (juce::juce_isRunningUnderDebugger()) JUCE_BREAK_IN_DEBUGGER; JUCE_ANALYZER_NORETURN) @@ -170,6 +171,7 @@ namespace juce careful that the expression you pass to it doesn't perform any actions that are vital for the correct behaviour of your program! @see jassertfalse + @hiderefby */ #define jassert(expression) JUCE_BLOCK_WITH_FORCED_SEMICOLON (if (! (expression)) jassertfalse;)