diff options
author | kleines Filmröllchen <malu.bertsch@gmail.com> | 2021-09-28 17:50:12 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-11-11 09:19:17 +0100 |
commit | 3a4ec4913183f3816a4010d58e61876966dbd422 (patch) | |
tree | c287c23f36d132ec68b14fd2cae0919494c1ec0c /Userland/Libraries | |
parent | f76241914c8a2b860c1e6fd3d7172aa22e5b0d9d (diff) | |
download | serenity-3a4ec4913183f3816a4010d58e61876966dbd422.zip |
LibDSP: Clean up ProcessorParameter header
Diffstat (limited to 'Userland/Libraries')
-rw-r--r-- | Userland/Libraries/LibDSP/ProcessorParameter.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Userland/Libraries/LibDSP/ProcessorParameter.h b/Userland/Libraries/LibDSP/ProcessorParameter.h index aa545397d4..b31ef804cb 100644 --- a/Userland/Libraries/LibDSP/ProcessorParameter.h +++ b/Userland/Libraries/LibDSP/ProcessorParameter.h @@ -6,13 +6,12 @@ #pragma once -#include "AK/Forward.h" -#include "LibGUI/Label.h" -#include "Music.h" #include <AK/FixedPoint.h> #include <AK/Format.h> +#include <AK/Forward.h> #include <AK/Types.h> #include <LibCore/Object.h> +#include <LibDSP/Music.h> namespace LibDSP { |