summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibDSP/Window.h
diff options
context:
space:
mode:
authorkleines Filmröllchen <filmroellchen@serenityos.org>2022-07-17 11:35:31 +0200
committerLinus Groh <mail@linusgroh.de>2022-07-19 11:17:45 +0100
commit00e13b5b27282fabbef31430f158dcf5bd321aa9 (patch)
tree62d0e2c58e94b1dfda67ed670bfaf9bfc8ab84c0 /Userland/Libraries/LibDSP/Window.h
parent3f59356c79a044e7f2c49a7e456f8309d47508fd (diff)
downloadserenity-00e13b5b27282fabbef31430f158dcf5bd321aa9.zip
LibDSP: Rename library namespace to DSP
That's the standard naming convention, but I didn't follow it when originally creating LibDSP and nobody corrected me, so here I am one year later :^)
Diffstat (limited to 'Userland/Libraries/LibDSP/Window.h')
-rw-r--r--Userland/Libraries/LibDSP/Window.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibDSP/Window.h b/Userland/Libraries/LibDSP/Window.h
index 6ca47b17d6..72b369ab24 100644
--- a/Userland/Libraries/LibDSP/Window.h
+++ b/Userland/Libraries/LibDSP/Window.h
@@ -9,7 +9,7 @@
#include <AK/FixedArray.h>
#include <AK/Math.h>
-namespace LibDSP {
+namespace DSP {
template<typename T>
class Window final {