From 98e6dbf50ad8061aec7836fcea839ac484580192 Mon Sep 17 00:00:00 2001 From: Timothy Flynn Date: Wed, 18 Jan 2023 08:53:09 -0500 Subject: [PATCH] Userland: Add missing limits.h header includes This is currently being implicitly including by InodeWatcherEvent.h by way of FileWatcher.h. The former will soon be removed from the latter, which would otherwise cause a compile error in these files. --- Userland/Libraries/LibCore/FileWatcherLinux.cpp | 1 + Userland/Services/LookupServer/LookupServer.cpp | 1 + 2 files changed, 2 insertions(+) diff --git a/Userland/Libraries/LibCore/FileWatcherLinux.cpp b/Userland/Libraries/LibCore/FileWatcherLinux.cpp index 48d3998672..56e41faff1 100644 --- a/Userland/Libraries/LibCore/FileWatcherLinux.cpp +++ b/Userland/Libraries/LibCore/FileWatcherLinux.cpp @@ -11,6 +11,7 @@ #include #include #include +#include #include #include #include diff --git a/Userland/Services/LookupServer/LookupServer.cpp b/Userland/Services/LookupServer/LookupServer.cpp index 42b770ff67..b0fdbfe7d2 100644 --- a/Userland/Services/LookupServer/LookupServer.cpp +++ b/Userland/Services/LookupServer/LookupServer.cpp @@ -16,6 +16,7 @@ #include #include #include +#include #include #include #include