Skip to content

Commit 98ae75c

Browse files
committed
Added newline at the end of files
1 parent f059e15 commit 98ae75c

File tree

8 files changed

+13
-8
lines changed

8 files changed

+13
-8
lines changed

libraries/Insights/src/Diagnostics.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,4 @@ void DiagnosticsClass::disableLogHook(uint32_t type)
3434
}
3535

3636
DiagnosticsClass Diagnostics;
37-
#endif
37+
#endif

libraries/Insights/src/Diagnostics.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
#ifdef CONFIG_ESP_INSIGHTS_ENABLED
99
#include "Arduino.h"
1010
#include "esp_diagnostics.h"
11+
1112
class DiagnosticsClass
1213
{
1314
public:
@@ -17,4 +18,4 @@ class DiagnosticsClass
1718
};
1819

1920
extern DiagnosticsClass Diagnostics;
20-
#endif
21+
#endif

libraries/Insights/src/Insights.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
#include "Insights.h"
99
#include "esp_insights.h"
1010
#include "esp_rmaker_utils.h"
11+
1112
static esp_err_t err;
1213

1314
esp_err_t InsightsClass::init(const char *auth_key, uint32_t log_type, const char *node_id, bool alloc_ext_ram)
@@ -81,4 +82,4 @@ void InsightsClass::unregisterTransport()
8182
}
8283

8384
InsightsClass Insights;
84-
#endif
85+
#endif

libraries/Insights/src/Insights.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
#include "Arduino.h"
1010
#include "esp_system.h"
1111
#include "esp_insights.h"
12+
1213
class InsightsClass
1314
{
1415
private:
@@ -24,4 +25,4 @@ class InsightsClass
2425
};
2526

2627
extern InsightsClass Insights;
27-
#endif
28+
#endif

libraries/Insights/src/Metrics.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,4 +141,4 @@ esp_err_t MetricsClass::deinitWiFiMetrics()
141141
}
142142

143143
MetricsClass Metrics;
144-
#endif
144+
#endif

libraries/Insights/src/Metrics.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
#include "Arduino.h"
1111
#include "esp_diagnostics_metrics.h"
1212
#include "esp_diagnostics.h"
13+
1314
class MetricsClass
1415
{
1516
public:
@@ -37,4 +38,4 @@ class MetricsClass
3738
};
3839

3940
extern MetricsClass Metrics;
40-
#endif
41+
#endif

libraries/Insights/src/Variables.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,4 +104,4 @@ esp_err_t VariablesClass::deinitNetworkVariables()
104104
}
105105

106106
VariablesClass Variables;
107-
#endif
107+
#endif

libraries/Insights/src/Variables.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
#include "Arduino.h"
1010
#include "esp_diagnostics.h"
1111
#include "esp_diagnostics_variables.h"
12+
1213
class VariablesClass
1314
{
1415
public:
@@ -30,4 +31,4 @@ class VariablesClass
3031
};
3132

3233
extern VariablesClass Variables;
33-
#endif
34+
#endif

0 commit comments

Comments
 (0)