From 0adfb0cd3c60b3f0d3b35492beac8fcd64181c06 Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Tue, 28 Mar 2023 15:06:03 +0200 Subject: [PATCH] add missing override specifiers --- mission/tmtc/PersistentLogTmStoreTask.h | 2 +- mission/tmtc/PersistentSingleTmStoreTask.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/mission/tmtc/PersistentLogTmStoreTask.h b/mission/tmtc/PersistentLogTmStoreTask.h index cb87ba6c..116b369e 100644 --- a/mission/tmtc/PersistentLogTmStoreTask.h +++ b/mission/tmtc/PersistentLogTmStoreTask.h @@ -35,7 +35,7 @@ class PersistentLogTmStoreTask : public TmStoreTaskBase, public ExecutableObject Countdown graceDelayDuringDumping = Countdown(200); bool someFileWasSwapped = false; - bool initStoresIfPossible(); + bool initStoresIfPossible() override; }; #endif /* MISSION_TMTC_PERSISTENTLOGTMSTORETASK_H_ */ diff --git a/mission/tmtc/PersistentSingleTmStoreTask.h b/mission/tmtc/PersistentSingleTmStoreTask.h index 7a4dd7ca..07e0f05f 100644 --- a/mission/tmtc/PersistentSingleTmStoreTask.h +++ b/mission/tmtc/PersistentSingleTmStoreTask.h @@ -21,7 +21,7 @@ class PersistentSingleTmStoreTask : public TmStoreTaskBase, public ExecutableObj Countdown tcHandlingCd = Countdown(400); Countdown graceDelayDuringDumping = Countdown(100); - bool initStoresIfPossible(); + bool initStoresIfPossible() override; }; #endif /* MISSION_TMTC_PERSISTENTSINGLETMSTORETASK_H_ */