mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-07 18:17:23 +00:00
LibDSP: Improve const correctness
This commit is contained in:
parent
4a6ebb8beb
commit
bcb331b862
Notes:
sideshowbarker
2024-07-17 10:55:36 +09:00
Author: https://github.com/kleinesfilmroellchen
Commit: bcb331b862
Pull-request: https://github.com/SerenityOS/serenity/pull/14010
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