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/delayed_echo.cpp b/example/delayed_echo.cpp
index db90523..1b700d0 100644
--- a/example/delayed_echo.cpp
+++ b/example/delayed_echo.cpp
@@ -3,15 +3,17 @@
* is calm for the passed in number of seconds.
*/
-#include <array>
-#include <chrono>
-#include <cstdio>
+#include <unistd.h>
+
#include <sdeventplus/clock.hpp>
#include <sdeventplus/event.hpp>
#include <sdeventplus/source/io.hpp>
#include <sdeventplus/utility/timer.hpp>
+
+#include <array>
+#include <chrono>
+#include <cstdio>
#include <string>
-#include <unistd.h>
#include <utility>
using sdeventplus::Clock;