diff options
| author | Rutger Broekhoff | 2026-08-28 22:22:24 +0200 |
|---|---|---|
| committer | Rutger Broekhoff | 2026-08-28 22:22:24 +0200 |
| commit | b0d7600970d2fdb1eb6fff813c7336ea34d4e228 (patch) | |
| tree | 051d6f80c7e332f4b31027025ae7c60c7ac70742 /server/src/req_ctx.cppm | |
| parent | 70643a9e4821bd11c3f363f1708fe420965467d1 (diff) | |
| download | routemon-b0d7600970d2fdb1eb6fff813c7336ea34d4e228.tar.gz routemon-b0d7600970d2fdb1eb6fff813c7336ea34d4e228.zip | |
Indent tweaks
Diffstat (limited to 'server/src/req_ctx.cppm')
| -rw-r--r-- | server/src/req_ctx.cppm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/server/src/req_ctx.cppm b/server/src/req_ctx.cppm index 464f2ff..4a64d7d 100644 --- a/server/src/req_ctx.cppm +++ b/server/src/req_ctx.cppm | |||
| @@ -20,8 +20,8 @@ export class req_ctx | |||
| 20 | 20 | ||
| 21 | public: | 21 | public: |
| 22 | explicit req_ctx( | 22 | explicit req_ctx( |
| 23 | trace::id tid, std::locale locale, http::verb_set route_verbs, | 23 | trace::id tid, std::locale locale, http::verb_set route_verbs, |
| 24 | bool keep_alive, bhttp::request_header<bhttp::fields> const& req_header) | 24 | bool keep_alive, bhttp::request_header<bhttp::fields> const& req_header) |
| 25 | : tid_{tid}, locale_{locale}, route_verbs_{route_verbs}, | 25 | : tid_{tid}, locale_{locale}, route_verbs_{route_verbs}, |
| 26 | keep_alive_{keep_alive}, req_header_{req_header} | 26 | keep_alive_{keep_alive}, req_header_{req_header} |
| 27 | { | 27 | { |
| @@ -29,8 +29,8 @@ public: | |||
| 29 | 29 | ||
| 30 | template <typename ReqBody> | 30 | template <typename ReqBody> |
| 31 | explicit req_ctx( | 31 | explicit req_ctx( |
| 32 | trace::id tid, std::locale locale, http::verb_set route_verbs, | 32 | trace::id tid, std::locale locale, http::verb_set route_verbs, |
| 33 | bhttp::request<ReqBody> const& req) | 33 | bhttp::request<ReqBody> const& req) |
| 34 | : req_ctx{tid, locale, route_verbs, req.keep_alive(), req.base()} | 34 | : req_ctx{tid, locale, route_verbs, req.keep_alive(), req.base()} |
| 35 | { | 35 | { |
| 36 | } | 36 | } |