Skip to content

Commit

Permalink
WelcomeMessagePrinter.h: fixed a warning.
Browse files Browse the repository at this point in the history
Appears when using the `[-Wextra]` flag.

lib/DnWiFiDoorLock/DnWiFiDoorLock/App.h:475:13: warning: missing initializer for member 'DnApp::Arduino::WelcomeMessagePrinter::Build::compiler' [-Wmissing-field-initializers]
  475 |             };
      |             ^
  • Loading branch information
MacDada committed Apr 30, 2023
1 parent 25d68bb commit 2c6f95a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/DnAppArduino/src/DnApp/Arduino/WelcomeMessagePrinter.h
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ namespace DnApp::Arduino {

int versionPatchLevel = __GNUC_PATCHLEVEL__;
#endif
} compiler;
} compiler = {};
};

explicit
Expand Down

0 comments on commit 2c6f95a

Please sign in to comment.