Skip to content

Commit

Permalink
Fix array initialisation
Browse files Browse the repository at this point in the history
  • Loading branch information
jhoar committed Dec 23, 2019
1 parent c27092d commit 7264486
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Ruckus.cpp
Expand Up @@ -140,8 +140,8 @@ struct Ruckus : core::AHModule {
std::array<digital::AHPulseGenerator,4> xGate;
std::array<digital::AHPulseGenerator,4> yGate;

std::array<bool,4> xMute = {true, true, true, true};
std::array<bool,4> yMute = {true, true, true, true};
std::array<bool,4> xMute {{true, true, true, true}};
std::array<bool,4> yMute {{true, true, true, true}};

std::array<rack::dsp::SchmittTrigger,4> xLockTrigger;
std::array<rack::dsp::SchmittTrigger,4> yLockTrigger;
Expand Down

0 comments on commit 7264486

Please sign in to comment.