From 78ca79cde19db630b1abfe8f00f49e87bb7e4068 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Mon, 20 Dec 2021 00:35:11 +0100 Subject: Fix a load of stuff that wasn't being freed on close. Nothing really that important, but it cleans up the valgrind leak check reports. --- src/lib/audio_processor.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/lib/audio_processor.h') diff --git a/src/lib/audio_processor.h b/src/lib/audio_processor.h index ca80c92b2..e24506acd 100644 --- a/src/lib/audio_processor.h +++ b/src/lib/audio_processor.h @@ -29,7 +29,7 @@ #include "types.h" -#include +#include #include #include @@ -65,14 +65,14 @@ public: /** @return the user-visible (translated) names of each of our inputs, in order */ virtual std::vector input_names () const = 0; - static std::list all (); - static std::list visible (); + static std::vector all (); + static std::vector visible (); static void setup_audio_processors (); static AudioProcessor const * from_id (std::string); private: - static std::list _all; - static std::list _non_experimental; + static std::vector> _experimental; + static std::vector> _non_experimental; }; -- cgit v1.2.3