diff --git a/Userland/Libraries/LibIPC/File.h b/Userland/Libraries/LibIPC/File.h index d0a78f6ae0..be5a50cda3 100644 --- a/Userland/Libraries/LibIPC/File.h +++ b/Userland/Libraries/LibIPC/File.h @@ -19,7 +19,7 @@ class File { public: // Must have a default constructor, because LibIPC // default-constructs arguments prior to decoding them. - File() { } + File() = default; // Intentionally not `explicit`. File(int fd)