Skip to content
This repository was archived by the owner on Dec 23, 2025. It is now read-only.

Commit 694ab2b

Browse files
committed
Clean up
1 parent a7456a1 commit 694ab2b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/SimpleReverbProcessor.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ static juce::AudioProcessorValueTreeState::ParameterLayout createParameterLayout
4242
ParamIDs::size,
4343
juce::NormalisableRange { 0.0f, 100.0f, 0.01f, 1.0f },
4444
50.0f,
45-
juce::String(),
45+
juce::String {},
4646
juce::AudioProcessorParameter::genericParameter,
4747
percentFormat,
4848
nullptr));
@@ -51,7 +51,7 @@ static juce::AudioProcessorValueTreeState::ParameterLayout createParameterLayout
5151
ParamIDs::damp,
5252
juce::NormalisableRange { 0.0f, 100.0f, 0.01f, 1.0f },
5353
50.0f,
54-
juce::String(),
54+
juce::String {},
5555
juce::AudioProcessorParameter::genericParameter,
5656
percentFormat,
5757
nullptr));
@@ -60,7 +60,7 @@ static juce::AudioProcessorValueTreeState::ParameterLayout createParameterLayout
6060
ParamIDs::width,
6161
juce::NormalisableRange { 0.0f, 100.0f, 0.01f, 1.0f },
6262
50.0f,
63-
juce::String(),
63+
juce::String {},
6464
juce::AudioProcessorParameter::genericParameter,
6565
percentFormat,
6666
nullptr));
@@ -69,7 +69,7 @@ static juce::AudioProcessorValueTreeState::ParameterLayout createParameterLayout
6969
ParamIDs::mix,
7070
juce::NormalisableRange { 0.0f, 100.0f, 0.01f, 1.0f },
7171
50.0f,
72-
juce::String(),
72+
juce::String {},
7373
juce::AudioProcessorParameter::genericParameter,
7474
percentFormat,
7575
nullptr));

0 commit comments

Comments
 (0)