commander: failsafe framework fix missing return in actionStr function (#21245)

- there needs to be a default statement for the compiler to work when this function is called.
This commit is contained in:
Tahsincan Köse
2023-03-06 17:21:20 +03:00
committed by GitHub
parent b79578fa55
commit 8737099a33
+2 -1
View File
@@ -112,7 +112,8 @@ public:
case Action::Terminate: return "Terminate";
case Action::Count: return "(invalid)";
case Action::Count:
default: return "(invalid)";
}
}