summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibIPC
diff options
context:
space:
mode:
authorTim Schumacher <timschumi@gmx.de>2023-02-09 03:02:46 +0100
committerLinus Groh <mail@linusgroh.de>2023-02-13 00:50:07 +0000
commit606a3982f34d777f121fcc4aa964141199676c20 (patch)
tree836fef41d11f1b77f4dac7d699e5c9f720ee4ff1 /Userland/Libraries/LibIPC
parenta96339b72b3b417ffaa4fbb4e7575149f749acaa (diff)
downloadserenity-606a3982f34d777f121fcc4aa964141199676c20.zip
LibCore: Move Stream-based file into the `Core` namespace
Diffstat (limited to 'Userland/Libraries/LibIPC')
-rw-r--r--Userland/Libraries/LibIPC/File.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/Userland/Libraries/LibIPC/File.h b/Userland/Libraries/LibIPC/File.h
index 09453b8149..d19156709e 100644
--- a/Userland/Libraries/LibIPC/File.h
+++ b/Userland/Libraries/LibIPC/File.h
@@ -9,6 +9,7 @@
#include <AK/Noncopyable.h>
#include <AK/StdLibExtras.h>
+#include <LibCore/File.h>
#include <LibCore/Stream.h>
#include <unistd.h>
@@ -41,7 +42,7 @@ public:
}
template<typename... Args>
- File(Core::Stream::File& file, Args... args)
+ File(Core::File& file, Args... args)
: File(file.leak_fd(Badge<File> {}), args...)
{
}