mirror of
https://github.com/eried/portapack-mayhem.git
synced 2025-12-24 03:51:01 -05:00
Fix for warning XXX should be initialized in the member initialization list
This commit is contained in:
parent
cdba4fa5bf
commit
c37df0c6fd
1 changed files with 2 additions and 2 deletions
|
|
@ -57,12 +57,12 @@ struct APRSRecentEntry {
|
||||||
uint16_t hits { 0 };
|
uint16_t hits { 0 };
|
||||||
uint32_t age { 0 };
|
uint32_t age { 0 };
|
||||||
|
|
||||||
uint64_t source;
|
uint64_t source { 0 };
|
||||||
std::string source_formatted { " " };
|
std::string source_formatted { " " };
|
||||||
std::string time_string { "" };
|
std::string time_string { "" };
|
||||||
std::string info_string { "" };
|
std::string info_string { "" };
|
||||||
|
|
||||||
aprs::aprs_pos pos;
|
aprs::aprs_pos pos { 0 , 0 , 0 , 0 };
|
||||||
bool has_position = false;
|
bool has_position = false;
|
||||||
APRSRecentEntry(uint64_t src)
|
APRSRecentEntry(uint64_t src)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue