Add clang format config file.

This commit is contained in:
Chunting Gu
2018-11-02 17:21:00 +08:00
parent 09ae5b4a2f
commit 364a37899d
2 changed files with 149 additions and 1 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ namespace webcc {
class HttpRequest : public HttpMessage {
public:
HttpRequest() = default;
virtual ~HttpRequest() = default;
~HttpRequest() override = default;
const std::string& method() const { return method_; }
void set_method(const std::string& method) { method_ = method; }