summaryrefslogtreecommitdiff
path: root/AK/Singleton.h
diff options
context:
space:
mode:
authorJames Mintram <me@jamesrm.com>2021-10-15 20:55:22 +0100
committerLinus Groh <mail@linusgroh.de>2021-10-15 21:48:45 +0100
commitf4fb6379145e5dfa6e008e936f7f2763199e6b5a (patch)
tree9b36b57be303da2ebe85eef5d037acf8f7c6e400 /AK/Singleton.h
parent8b57e56d6627a6e8c82629617ec4181c4b6aa1c9 (diff)
downloadserenity-f4fb6379145e5dfa6e008e936f7f2763199e6b5a.zip
Kernel: Split ScopedCritical so header is platform independent
A new header file has been created in the Arch/ folder while the implementation has been moved into a CPP living in the X86 folder.
Diffstat (limited to 'AK/Singleton.h')
-rw-r--r--AK/Singleton.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/AK/Singleton.h b/AK/Singleton.h
index 353102a83b..4ffb0c15c8 100644
--- a/AK/Singleton.h
+++ b/AK/Singleton.h
@@ -11,7 +11,7 @@
#include <AK/Noncopyable.h>
#ifdef KERNEL
# include <Kernel/Arch/Processor.h>
-# include <Kernel/Arch/x86/ScopedCritical.h>
+# include <Kernel/Arch/ScopedCritical.h>
#endif
#ifndef __serenity__