diff options
Diffstat (limited to 'zenhttp/httpasio.cpp')
| -rw-r--r-- | zenhttp/httpasio.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/zenhttp/httpasio.cpp b/zenhttp/httpasio.cpp index 7a6efd884..801bb51ac 100644 --- a/zenhttp/httpasio.cpp +++ b/zenhttp/httpasio.cpp @@ -155,11 +155,7 @@ private: { HeaderEntry() = default; - HeaderEntry(std::string_view InName, std::string_view InValue) - : Name(InName) - , Value(InValue) - { - } + HeaderEntry(std::string_view InName, std::string_view InValue) : Name(InName), Value(InValue) {} std::string_view Name; std::string_view Value; |