LibDSP: Improve const correctness

This commit is contained in:
kleines Filmröllchen 2022-05-11 21:49:41 +02:00 committed by Linus Groh
commit bcb331b862
Notes: sideshowbarker 2024-07-17 10:55:36 +09:00
8 changed files with 23 additions and 22 deletions

View file

@ -34,6 +34,7 @@ public:
SignalType input_type() const { return m_input_type; }
SignalType output_type() const { return m_output_type; }
Vector<ProcessorParameter&>& parameters() { return m_parameters; }
Vector<ProcessorParameter&> const& parameters() const { return m_parameters; }
private:
SignalType const m_input_type;