Fix for warning XXX should be initialized in the member initialization list

This commit is contained in:
GullCode 2022-04-19 17:23:30 +02:00
parent cdba4fa5bf
commit c37df0c6fd

View File

@ -57,12 +57,12 @@ struct APRSRecentEntry {
uint16_t hits { 0 };
uint32_t age { 0 };
uint64_t source;
uint64_t source { 0 };
std::string source_formatted { " " };
std::string time_string { "" };
std::string info_string { "" };
aprs::aprs_pos pos;
aprs::aprs_pos pos { 0 , 0 , 0 , 0 };
bool has_position = false;
APRSRecentEntry(uint64_t src)
{