Skip to content

Commit 7e73a36

Browse files
committed
Fix variable initialization order
The change will fix a build error raised with the last esp32 core 2.0.4
1 parent a594d95 commit 7e73a36

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ArduinoIoTCloud.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ ArduinoIoTCloudClass::ArduinoIoTCloudClass()
3232
, _tz_offset{0}
3333
, _tz_dst_until{0}
3434
, _thing_id{""}
35-
, _device_id{""}
3635
, _lib_version{AIOT_CONFIG_LIB_VERSION}
36+
, _device_id{""}
3737
, _cloud_event_callback{nullptr}
3838
, _thing_id_outdated{false}
3939
{

0 commit comments

Comments
 (0)