diff options
Diffstat (limited to 'Userland/Libraries/LibCore/Socket.h')
-rw-r--r-- | Userland/Libraries/LibCore/Socket.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibCore/Socket.h b/Userland/Libraries/LibCore/Socket.h index 016ed427e2..58823b7fbd 100644 --- a/Userland/Libraries/LibCore/Socket.h +++ b/Userland/Libraries/LibCore/Socket.h @@ -58,7 +58,7 @@ protected: virtual bool common_connect(const struct sockaddr*, socklen_t); private: - virtual bool open(IODevice::OpenMode) override { VERIFY_NOT_REACHED(); } + virtual bool open(OpenMode) override { VERIFY_NOT_REACHED(); } void ensure_read_notifier(); Type m_type { Type::Invalid }; |