diff options
author | HampusM <hampus@hampusmat.com> | 2022-05-16 13:49:54 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2022-05-16 13:50:31 +0200 |
commit | 0529ac97653bc535c5c1db832d258f661d69309c (patch) | |
tree | 48c0b6ded9d82e01d5e96f12c66e0a9b6d385618 /minion/src/http/request.hpp | |
parent | 3ede86caf948d6e989fd056ea4f8d8c588939971 (diff) |
refactor(minion): improve network code readability
Diffstat (limited to 'minion/src/http/request.hpp')
-rw-r--r-- | minion/src/http/request.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/minion/src/http/request.hpp b/minion/src/http/request.hpp index dae66f2..fc95473 100644 --- a/minion/src/http/request.hpp +++ b/minion/src/http/request.hpp @@ -57,7 +57,7 @@ public: auto operator=(HTTPRequest &&other) noexcept -> HTTPRequest &; - static HTTPRequest create_invalid() noexcept; + static auto create_invalid() noexcept -> HTTPRequest; private: NetworkConnection _connection; |