Merge pull request #295 from GullCode/ui_sonde_warning_fix

Added missing initializer
This commit is contained in:
Erwin Ried 2021-01-28 00:15:39 +01:00 committed by GitHub
commit 9bd74f32d0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -68,9 +68,9 @@ private:
uint32_t target_frequency_ { 402700000 }; uint32_t target_frequency_ { 402700000 };
bool logging { false }; bool logging { false };
bool use_crc { false }; bool use_crc { false };
sonde::GPS_data gps_info; sonde::GPS_data gps_info { };
sonde::temp_humid temp_humid_info; sonde::temp_humid temp_humid_info { };
std::string sonde_id; std::string sonde_id { };
Labels labels { Labels labels {
{ { 4 * 8, 2 * 16 }, "Type:", Color::light_grey() }, { { 4 * 8, 2 * 16 }, "Type:", Color::light_grey() },