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

NullCheckedInvocation: Add missing tag and namespace comment to class declaration

This commit is contained in:
ed 2021-07-23 16:06:18 +01:00
parent 4980788516
commit 4b5c59dbae

View file

@ -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