mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 14:47:35 +00:00
LibDSP: Improve const correctness
This commit is contained in:
parent
4a6ebb8beb
commit
bcb331b862
8 changed files with 23 additions and 22 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue