Skip to content

Commit

Permalink
c++20 things
Browse files Browse the repository at this point in the history
  • Loading branch information
violetmage authored Aug 30, 2024
1 parent 254dde7 commit f41dac0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/spectrum.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@ class Spectrum : public PluginBase {

std::vector<float> left_delayed_vector;
std::vector<float> right_delayed_vector;
std::span<float> left_delayed;
std::span<float> right_delayed;
std::span<float, std::dynamic_extent> left_delayed;
std::span<float, std::dynamic_extent> right_delayed;

std::array<float, n_bands> latest_samples_mono;

Expand Down

0 comments on commit f41dac0

Please sign in to comment.