clang-format: sync from docs master .clang-format
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
Change-Id: I8077816a5ddf7a067bdf537cb46e4e32f5c4ef65
diff --git a/example/calculator-server.cpp b/example/calculator-server.cpp
index 2c7f3e4..c089d91 100644
--- a/example/calculator-server.cpp
+++ b/example/calculator-server.cpp
@@ -1,8 +1,9 @@
-#include <iostream>
#include <net/poettering/Calculator/client.hpp>
#include <net/poettering/Calculator/error.hpp>
#include <net/poettering/Calculator/server.hpp>
#include <sdbusplus/server.hpp>
+
+#include <iostream>
#include <string_view>
using Calculator_inherit =
@@ -14,8 +15,7 @@
/** Constructor */
Calculator(sdbusplus::bus::bus& bus, const char* path) :
Calculator_inherit(bus, path)
- {
- }
+ {}
/** Multiply (x*y), update lastResult */
int64_t multiply(int64_t x, int64_t y) override