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:
parent
9cdb02a0dc
commit
934e2995ff
1 changed files with 2 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue