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

APVTS: Add missing qualification to std::move

This commit is contained in:
reuk 2022-10-26 20:21:41 +01:00
parent a9a4fae783
commit cbf59e185f
No known key found for this signature in database
GPG key ID: 9ADCD339CFC98A11

View file

@ -251,7 +251,7 @@ AudioProcessorValueTreeState::AudioProcessorValueTreeState (AudioProcessor& proc
}
}
state->processor.addParameterGroup (move (group));
state->processor.addParameterGroup (std::move (group));
}
AudioProcessorValueTreeState* state;