Browse Source

Fix build on macOS 10.8

tags/v2.3.0-RC1
falkTX 4 years ago
parent
commit
c8dbaf6c85
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      source/modules/juce_audio_processors/format_types/juce_VST3Common.h

+ 1
- 1
source/modules/juce_audio_processors/format_types/juce_VST3Common.h View File

@@ -654,7 +654,7 @@ private:
struct BasicOptional final
{
BasicOptional() noexcept = default;
BasicOptional (const Item& i) noexcept : item { i }, isValid { true } {}
BasicOptional (const Item& i) noexcept : item ( i ), isValid ( true ) {}
Item item;
bool isValid{};


Loading…
Cancel
Save