clang-format: update latest spec and reformat
Copy the latest format file from the docs repository and apply.
Change-Id: I2a188ebd3faf376ecba3e20ef6a28ffbaa986628
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
diff --git a/message_parsers.hpp b/message_parsers.hpp
index a7d376a..ed75ce2 100644
--- a/message_parsers.hpp
+++ b/message_parsers.hpp
@@ -81,8 +81,8 @@
* header type. In case of failure nullptr and session header type
* would be invalid.
*/
-std::tuple<std::shared_ptr<Message>, SessionHeader>
- unflatten(std::vector<uint8_t>& inPacket);
+std::tuple<std::shared_ptr<Message>, SessionHeader> unflatten(
+ std::vector<uint8_t>& inPacket);
/**
* @brief Flatten an IPMI message and generate the IPMI packet with the
@@ -246,9 +246,9 @@
*
* @return on successful completion, return the encrypted payload
*/
-std::vector<uint8_t>
- encryptPayload(const std::shared_ptr<Message>& message,
- const std::shared_ptr<session::Session>& session);
+std::vector<uint8_t> encryptPayload(
+ const std::shared_ptr<Message>& message,
+ const std::shared_ptr<session::Session>& session);
} // namespace internal