1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-09 23:34:20 +00:00

OptionsHelpers: Add a missing juce namespace

This commit is contained in:
Tom Poole 2025-09-17 17:15:34 +01:00
parent 95d6b4a130
commit 99b552da39

View file

@ -32,6 +32,9 @@
==============================================================================
*/
namespace juce
{
/** A base class for building Options.
@tags{Core}
@ -46,3 +49,5 @@ public:
OptionsType buildOptions() { return buildOptions (OptionsType{}); }
};
}