clang-format: update to latest from docs repo
This is from openbmc/docs/style/cpp/.clang-format
Other OpenBMC repos are doing the same.
Tested: Built and validator passed.
Change-Id: Ief26c755c9ce012823e16a506342b0547a53517a
Signed-off-by: Gunnar Mills <gmills@us.ibm.com>
diff --git a/http/http_request.h b/http/http_request.h
index 0dd7e35..67cc944 100644
--- a/http/http_request.h
+++ b/http/http_request.h
@@ -1,14 +1,14 @@
#pragma once
+#include "common.h"
+#include "query_string.h"
+
#include "sessions.hpp"
#include <boost/asio/io_context.hpp>
#include <boost/beast/http.hpp>
#include <boost/beast/websocket.hpp>
-#include "common.h"
-#include "query_string.h"
-
#if BOOST_VERSION >= 107000
#include <boost/beast/ssl/ssl_stream.hpp>
#else
@@ -45,8 +45,7 @@
boost::beast::http::request<boost::beast::http::string_body>& reqIn) :
req(reqIn),
fields(reqIn.base()), body(reqIn.body())
- {
- }
+ {}
boost::beast::http::verb method() const
{