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

fix double declaration getBool()

This commit is contained in:
Ben Kuper 2024-06-22 22:44:20 +02:00
parent 7972d8f44e
commit 5bb41f0a46

View file

@ -158,7 +158,7 @@ public:
/** Returns the value of the OSCArgument as a boolean.
If the type of the OSCArgument is not T or F, the behaviour is undefined.
*/
bool getBool() const noexcept { return type == OSCTypes::T; }
bool getBool() const noexcept;
private:
//==============================================================================