diff options
author | Andreas Kling <kling@serenityos.org> | 2020-02-05 18:21:30 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-02-05 19:13:44 +0100 |
commit | 5b7924b9e786d449d12e0df4630f710447b25592 (patch) | |
tree | eff795a8ea7f305ef78028c463fd1aad90e3823b /Libraries/LibProtocol/Download.cpp | |
parent | f6ce24eb48dfc6f9f66e3b7a45920e8a866ee930 (diff) | |
download | serenity-5b7924b9e786d449d12e0df4630f710447b25592.zip |
LibProtocol: Rename namespace LibProtocol => Protocol
Diffstat (limited to 'Libraries/LibProtocol/Download.cpp')
-rw-r--r-- | Libraries/LibProtocol/Download.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Libraries/LibProtocol/Download.cpp b/Libraries/LibProtocol/Download.cpp index 3e4208deae..58ce5e050b 100644 --- a/Libraries/LibProtocol/Download.cpp +++ b/Libraries/LibProtocol/Download.cpp @@ -28,7 +28,7 @@ #include <LibProtocol/Client.h> #include <LibProtocol/Download.h> -namespace LibProtocol { +namespace Protocol { Download::Download(Client& client, i32 download_id) : m_client(client.make_weak_ptr()) |