Skip to content

Commit

Permalink
CI: macos-clang compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
danngreen committed Jan 11, 2025
1 parent cc7cd4d commit ee03564
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion firmware/src/patch_play/cable_cache.hh
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ struct CableCache {
if (injack.module_id < ins.size() && outjack.module_id < outs.size()) {
auto &out = outs[outjack.module_id];
auto out_idx = out.size();
out.emplace_back(0.f, outjack.jack_id);
out.push_back({0.f, outjack.jack_id});
ins[injack.module_id].push_back({injack.jack_id, outjack.module_id, (uint16_t)out_idx});
}
}
Expand Down

0 comments on commit ee03564

Please sign in to comment.