diff options
author | cflip <cflip@cflip.net> | 2022-09-19 21:46:12 -0600 |
---|---|---|
committer | cflip <cflip@cflip.net> | 2022-09-19 21:46:12 -0600 |
commit | bcea88142033f37bffeca4df096fb7795ebf7020 (patch) | |
tree | d1f990532092327c3269ac3bed86eec6061a3067 /src/HttpRequest.h | |
parent | b8766fcef6dcc40bd46584015375ea76518c6201 (diff) |
Add ClangFormat configuration and reformat files
Diffstat (limited to 'src/HttpRequest.h')
-rw-r--r-- | src/HttpRequest.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/HttpRequest.h b/src/HttpRequest.h index 3d20e57..cb98bea 100644 --- a/src/HttpRequest.h +++ b/src/HttpRequest.h @@ -9,6 +9,7 @@ public: std::string uri() const { return m_uri; } std::string header(const std::string& header_key) const { return m_headers.at(header_key); }; + private: std::map<std::string, std::string> m_headers; std::string m_uri; |