From 4b5c59dbaecb1e15d4ce6fa623079abbac82081f Mon Sep 17 00:00:00 2001 From: ed Date: Fri, 23 Jul 2021 16:06:18 +0100 Subject: [PATCH] NullCheckedInvocation: Add missing tag and namespace comment to class declaration --- modules/juce_core/misc/juce_Functional.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/modules/juce_core/misc/juce_Functional.h b/modules/juce_core/misc/juce_Functional.h index 45431fc209..877221fa47 100644 --- a/modules/juce_core/misc/juce_Functional.h +++ b/modules/juce_core/misc/juce_Functional.h @@ -28,6 +28,8 @@ namespace juce If the object is a std::function it will check for nullptr before calling. For a callable object it will invoke the function call operator. + + @tags{Core} */ struct NullCheckedInvocation { @@ -48,4 +50,4 @@ struct NullCheckedInvocation static void invoke (std::nullptr_t, Args&&...) {} }; -} +} // namespace juce