1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-31 03:00:05 +00:00

Added some braces to work around a compiler bug in VS2015

This commit is contained in:
jules 2017-05-31 12:37:50 +01:00
parent 9d921a3b21
commit 313571118e

View file

@ -688,7 +688,9 @@ void AudioProcessor::addParameter (AudioProcessorParameter* p)
auto paramId = getParameterID (p->parameterIndex);
for (auto q : managedParameters)
{
jassert (q == nullptr || q == p || paramId != getParameterID (q->parameterIndex));
}
#endif
}