1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 17:07:34 +00:00

LookupServer: Move into LookupServer namespace

This commit is contained in:
Sergey Bugaev 2021-02-04 19:07:45 +03:00 committed by Andreas Kling
parent 7e9122950e
commit 314f966745
10 changed files with 37 additions and 1 deletions

View file

@ -37,7 +37,7 @@ int main([[maybe_unused]] int argc, [[maybe_unused]] char** argv)
}
Core::EventLoop event_loop;
auto server = LookupServer::construct();
auto server = LookupServer::LookupServer::construct();
if (pledge("stdio accept inet", nullptr) < 0) {
perror("pledge");