From 0205e0dfbbef174d23e89608a7835590644f8fad Mon Sep 17 00:00:00 2001
From: Jochen Vothknecht <jochen3120@gmail.com>
Date: Thu, 19 May 2022 12:01:24 +0200
Subject: [PATCH] Reordering includes for consistency

---
 .../FxCyanF-classImplementation.cpp           | 26 +++++++++----------
 1 file changed, 13 insertions(+), 13 deletions(-)

diff --git a/CLC-qthing/SiliconTorch/FxCyanF-classImplementation.cpp b/CLC-qthing/SiliconTorch/FxCyanF-classImplementation.cpp
index bffc535..33a02ce 100644
--- a/CLC-qthing/SiliconTorch/FxCyanF-classImplementation.cpp
+++ b/CLC-qthing/SiliconTorch/FxCyanF-classImplementation.cpp
@@ -1,18 +1,5 @@
 #include "FxCyanF.hpp"
 
-// ESP32 specific
-#include "esp_err.h"
-#include "esp_log.h"
-#include "driver/ledc.h"
-#include "tcpip_adapter.h"
-
-// misc
-#include <nlohmann/json.hpp>
-
-// qthing stuff
-#include <qthing>
-#include <qthing/mqtt_common.hpp>
-
 // C++ system level
 #include <string>
 #include <cstdio>
@@ -20,11 +7,24 @@
 #include <algorithm>
 #include <functional>
 
+// ESP32 specific
+#include "esp_err.h"
+#include "esp_log.h"
+#include "driver/ledc.h"
+#include "tcpip_adapter.h"
+
 // project specific
 #include "FxVSync.hpp"
 #include "CyanBus.hpp"
 #include "Metrics.hpp"
 
+// qthing stuff
+#include <qthing>
+#include <qthing/mqtt_common.hpp>
+
+// misc
+#include <nlohmann/json.hpp>
+
 
 using namespace qthing;
 using json = nlohmann::json;
-- 
GitLab