diff options
| author | Stefan Boberg <[email protected]> | 2021-09-16 15:46:43 +0200 |
|---|---|---|
| committer | Stefan Boberg <[email protected]> | 2021-09-16 15:47:56 +0200 |
| commit | c3a7f98683d8c017f6a0dc3e884f2397670563e6 (patch) | |
| tree | 37bc2bc7255f913bd52fc9ed3103138e8c594bfc /zenhttp | |
| parent | Improved package serialization to allow round tripping (diff) | |
| download | zen-c3a7f98683d8c017f6a0dc3e884f2397670563e6.tar.xz zen-c3a7f98683d8c017f6a0dc3e884f2397670563e6.zip | |
clang-format fixes
Diffstat (limited to 'zenhttp')
| -rw-r--r-- | zenhttp/httpshared.h | 4 | ||||
| -rw-r--r-- | zenhttp/include/zenhttp/httpclient.h | 4 | ||||
| -rw-r--r-- | zenhttp/include/zenhttp/httpshared.h | 4 | ||||
| -rw-r--r-- | zenhttp/include/zenhttp/zenhttp.h | 4 | ||||
| -rw-r--r-- | zenhttp/zenhttp.cpp | 6 |
5 files changed, 12 insertions, 10 deletions
diff --git a/zenhttp/httpshared.h b/zenhttp/httpshared.h index 06dc4a872..92c1ef9c6 100644 --- a/zenhttp/httpshared.h +++ b/zenhttp/httpshared.h @@ -33,8 +33,8 @@ struct CbAttachmentEntry enum { - kIsCompressed = (1u << 0), // Is marshaled using compressed buffer storage format - kIsObject = (1u << 1), // Is compact binary object + kIsCompressed = (1u << 0), // Is marshaled using compressed buffer storage format + kIsObject = (1u << 1), // Is compact binary object }; }; diff --git a/zenhttp/include/zenhttp/httpclient.h b/zenhttp/include/zenhttp/httpclient.h index 3e342f2bd..aa36a8027 100644 --- a/zenhttp/include/zenhttp/httpclient.h +++ b/zenhttp/include/zenhttp/httpclient.h @@ -24,8 +24,8 @@ namespace zen { class CbPackage; /** HTTP client implementation for Zen use cases - - Currently simple and synchronous, should become lean and asynchronous + + Currently simple and synchronous, should become lean and asynchronous */ class HttpClient { diff --git a/zenhttp/include/zenhttp/httpshared.h b/zenhttp/include/zenhttp/httpshared.h index 06dc4a872..92c1ef9c6 100644 --- a/zenhttp/include/zenhttp/httpshared.h +++ b/zenhttp/include/zenhttp/httpshared.h @@ -33,8 +33,8 @@ struct CbAttachmentEntry enum { - kIsCompressed = (1u << 0), // Is marshaled using compressed buffer storage format - kIsObject = (1u << 1), // Is compact binary object + kIsCompressed = (1u << 0), // Is marshaled using compressed buffer storage format + kIsObject = (1u << 1), // Is compact binary object }; }; diff --git a/zenhttp/include/zenhttp/zenhttp.h b/zenhttp/include/zenhttp/zenhttp.h index 586fc98b4..165f34b48 100644 --- a/zenhttp/include/zenhttp/zenhttp.h +++ b/zenhttp/include/zenhttp/zenhttp.h @@ -8,6 +8,6 @@ namespace zen { - ZENHTTP_API void zenhttp_forcelinktests(); - +ZENHTTP_API void zenhttp_forcelinktests(); + } diff --git a/zenhttp/zenhttp.cpp b/zenhttp/zenhttp.cpp index 148cf4499..637486f55 100644 --- a/zenhttp/zenhttp.cpp +++ b/zenhttp/zenhttp.cpp @@ -1,3 +1,5 @@ +// Copyright Epic Games, Inc. All Rights Reserved. + #include <zenhttp/zenhttp.h> #include <zenhttp/httpserver.h> @@ -7,7 +9,7 @@ namespace zen { void zenhttp_forcelinktests() { - http_forcelink(); + http_forcelink(); } -}
\ No newline at end of file +} // namespace zen
\ No newline at end of file |