1
0
forked from fsfw/fsfw

fixed some shadowing issues

This commit is contained in:
2020-08-28 17:00:16 +02:00
parent 42dd665e26
commit 5ca26a72ea
4 changed files with 662 additions and 667 deletions

View File

@ -92,7 +92,7 @@ protected:
bool childrenChangedHealth;
uint32_t uptimeStartTable;
uint32_t uptimeStartTable = 0;
HybridIterator<ModeListEntry> currentTargetTable;
@ -108,10 +108,10 @@ protected:
FixedMap<Mode_t, SequenceInfo> modeSequences;
StorageManagerIF *IPCStore;
StorageManagerIF *IPCStore = nullptr;
#ifdef USE_MODESTORE
ModeStoreIF *modeStore;
ModeStoreIF *modeStore = nullptr;
#endif
bool existsModeSequence(Mode_t id);