From 2a699c904ae11b1c8a8207ae895c1c2c0b4e0ca6 Mon Sep 17 00:00:00 2001 From: Sam Atkins Date: Fri, 27 Jan 2023 17:08:13 +0000 Subject: [PATCH] LibDSP: Remove declarations for non-existent methods --- Userland/Libraries/LibDSP/Synthesizers.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/Userland/Libraries/LibDSP/Synthesizers.h b/Userland/Libraries/LibDSP/Synthesizers.h index 99b660f20f..45b3a4cdab 100644 --- a/Userland/Libraries/LibDSP/Synthesizers.h +++ b/Userland/Libraries/LibDSP/Synthesizers.h @@ -42,8 +42,6 @@ class Classic : public SynthesizerProcessor { public: Classic(NonnullRefPtr); - static Envelope compute_envelope(RollNote&); - Waveform wave() const { return m_waveform.value(); } private: @@ -57,7 +55,6 @@ private: double square_position(u32 sample_time, u8 note) const; double saw_position(u32 sample_time, u8 note) const; double noise_position(u32 sample_time, u8 note); - double get_random_from_seed(u64 note); ProcessorEnumParameter m_waveform; ProcessorRangeParameter m_attack;