diff options
| author | Stefan Boberg <[email protected]> | 2021-09-06 19:06:23 +0200 |
|---|---|---|
| committer | Stefan Boberg <[email protected]> | 2021-09-06 19:06:23 +0200 |
| commit | 2d1144d21a1c606434a025724e85c23824f0ca35 (patch) | |
| tree | 570fc126c2084ac4a3b1dee61565f487ae6b3063 /zenserver-test/zenserver-test.cpp | |
| parent | Merge branch 'main' of https://github.com/EpicGames/zen (diff) | |
| download | zen-2d1144d21a1c606434a025724e85c23824f0ca35.tar.xz zen-2d1144d21a1c606434a025724e85c23824f0ca35.zip | |
clang-format fixes
Diffstat (limited to 'zenserver-test/zenserver-test.cpp')
| -rw-r--r-- | zenserver-test/zenserver-test.cpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/zenserver-test/zenserver-test.cpp b/zenserver-test/zenserver-test.cpp index 008cae27e..455ab2495 100644 --- a/zenserver-test/zenserver-test.cpp +++ b/zenserver-test/zenserver-test.cpp @@ -89,7 +89,7 @@ public: void Get(const std::string_view Server, int Port, const std::string_view Path) { ZEN_UNUSED(Port); - + http_parser_init(&m_HttpParser, HTTP_RESPONSE); m_HttpParser.data = this; @@ -152,7 +152,11 @@ private: return 0; } int OnMessageBegin() { return 0; } - int OnBody(const char* Data, size_t Bytes) { ZEN_UNUSED(Data, Bytes); return 0; } + int OnBody(const char* Data, size_t Bytes) + { + ZEN_UNUSED(Data, Bytes); + return 0; + } void OnConnected() { |