1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-02-09 04:30:09 +00:00

Worked around a VS2013 compiler error

This commit is contained in:
Tom Poole 2018-07-10 12:49:52 +01:00
parent 9cdb02a0dc
commit 934e2995ff

View file

@ -37,8 +37,9 @@ struct AudioVisualiserComponent::ChannelInfo
void clear() noexcept
{
// VS2013 doesn't like {} here...
for (auto& l : levels)
l = {};
l = Range<float>();
value = {};
subSample = 0;