clang-format: copy latest and re-format
clang-format-16 has some backwards incompatible changes that require
additional settings for best compatibility and re-running the formatter.
Copy the latest .clang-format from the docs repository and reformat the
repository.
Change-Id: I84a952aae0e96b2960d8622659902df660d5ddb8
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
diff --git a/example/heartbeat_timer.cpp b/example/heartbeat_timer.cpp
index d9203ac..04c0ba8 100644
--- a/example/heartbeat_timer.cpp
+++ b/example/heartbeat_timer.cpp
@@ -3,14 +3,15 @@
* each timer expiration.
*/
-#include <chrono>
-#include <cstdio>
-#include <functional>
#include <sdeventplus/clock.hpp>
#include <sdeventplus/event.hpp>
#include <sdeventplus/source/signal.hpp>
#include <sdeventplus/utility/timer.hpp>
#include <stdplus/signal.hpp>
+
+#include <chrono>
+#include <cstdio>
+#include <functional>
#include <string>
using sdeventplus::Clock;