summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibAudio/Loader.h
diff options
context:
space:
mode:
authorBen Wiederhake <BenWiederhake.GitHub@gmx.de>2021-01-21 20:55:37 +0100
committerAndreas Kling <kling@serenityos.org>2021-01-22 21:49:54 +0100
commit67cda61b7f63935032b4e946f908df038ac51ff9 (patch)
tree86a0991d8461c0921ca0cd2725b8591216ca141f /Userland/Libraries/LibAudio/Loader.h
parent1e7adf5cb632331fca3532342a18a190325d6746 (diff)
downloadserenity-67cda61b7f63935032b4e946f908df038ac51ff9.zip
Libraries: Add missing headers
A C++ source file containing just #include <LibFoo/Bar.h> should always compile cleanly. This patch adds missing header inclusions that could have caused weird error messages if they were used in a different context. Also, this confused QtCreator.
Diffstat (limited to 'Userland/Libraries/LibAudio/Loader.h')
-rw-r--r--Userland/Libraries/LibAudio/Loader.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Libraries/LibAudio/Loader.h b/Userland/Libraries/LibAudio/Loader.h
index bb2e2f342f..af72d0e185 100644
--- a/Userland/Libraries/LibAudio/Loader.h
+++ b/Userland/Libraries/LibAudio/Loader.h
@@ -30,6 +30,7 @@
#include <AK/RefCounted.h>
#include <AK/RefPtr.h>
#include <AK/StringView.h>
+#include <LibAudio/Buffer.h>
#include <LibCore/File.h>
namespace Audio {