summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibGUI
diff options
context:
space:
mode:
authorMaciej Zygmanowski <sppmacd@pm.me>2021-05-08 14:00:56 +0200
committerLinus Groh <mail@linusgroh.de>2021-05-08 13:19:24 +0100
commitece300e1e31edb4ba72d5cccc1c0b92d5af48841 (patch)
tree4d6ece99072d2818258c8b08320303efcc7241e1 /Userland/Libraries/LibGUI
parent2905e10513859de9d0fce4e7f18a99bf1ecb01a7 (diff)
downloadserenity-ece300e1e31edb4ba72d5cccc1c0b92d5af48841.zip
LibGUI: Add missing <AK/Function.h> include
Diffstat (limited to 'Userland/Libraries/LibGUI')
-rw-r--r--Userland/Libraries/LibGUI/UndoStack.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Libraries/LibGUI/UndoStack.h b/Userland/Libraries/LibGUI/UndoStack.h
index 5c2b829219..3f720ebd01 100644
--- a/Userland/Libraries/LibGUI/UndoStack.h
+++ b/Userland/Libraries/LibGUI/UndoStack.h
@@ -6,6 +6,7 @@
#pragma once
+#include <AK/Function.h>
#include <AK/NonnullOwnPtrVector.h>
#include <LibGUI/Forward.h>