sts: add STS_UNREACHABLE_DEFAULT_CASE()

This commit is contained in:
Michael Scire
2019-09-28 15:13:20 -07:00
committed by SciresM
parent 609a302e16
commit add18d868f
23 changed files with 50 additions and 87 deletions

View File

@@ -100,8 +100,7 @@ namespace sts::boot {
return &BatteryChargeParameters1;
case 2:
return &BatteryChargeParameters2;
default:
std::abort();
STS_UNREACHABLE_DEFAULT_CASE();
}
}
@@ -281,8 +280,7 @@ namespace sts::boot {
case CheckBatteryResult::Reboot:
RebootSystem();
break;
default:
std::abort();
STS_UNREACHABLE_DEFAULT_CASE();
}
}