-
-
Notifications
You must be signed in to change notification settings - Fork 345
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix warnings flagged by clang build (#2801)
Co-authored-by: mikee47 <[email protected]>
- Loading branch information
Showing
18 changed files
with
31 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -76,7 +76,7 @@ struct esp_partition_info_t; | |
|
||
namespace Disk | ||
{ | ||
class DiskPart; | ||
struct DiskPart; | ||
} | ||
|
||
/** | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule UPnP
updated
4 files
+1 −1 | src/ClassGroup.cpp | |
+2 −2 | src/include/Network/UPnP/ClassGroup.h | |
+1 −1 | src/include/Network/UPnP/ControlPoint.h | |
+3 −3 | src/include/Network/UPnP/ObjectClass.h |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,17 +9,13 @@ | |
|
||
namespace | ||
{ | ||
// For testing purposes, try a few different URL formats | ||
DEFINE_FSTR(MQTT_URL1, "mqtt://test.mosquitto.org:1883") | ||
DEFINE_FSTR(MQTT_URL2, "mqtts://test.mosquitto.org:8883") // (Need ENABLE_SSL) | ||
DEFINE_FSTR(MQTT_URL3, "mqtt://frank:[email protected]:1883") | ||
|
||
#ifdef ENABLE_SSL | ||
#include <ssl/private_key.h> | ||
#include <ssl/cert.h> | ||
#define MQTT_URL MQTT_URL2 | ||
DEFINE_FSTR(MQTT_URL, "mqtts://test.mosquitto.org:8883") | ||
#else | ||
#define MQTT_URL MQTT_URL1 | ||
DEFINE_FSTR(MQTT_URL, "mqtt://test.mosquitto.org:1883") | ||
// DEFINE_FSTR(MQTT_URL, "mqtt://frank:[email protected]:1883") | ||
#endif | ||
|
||
// Forward declarations | ||
|