Saving changes

This commit is contained in:
kdeng00
2022-01-09 00:31:43 -05:00
parent a1b2e5f64a
commit e90278995a
8 changed files with 60 additions and 70 deletions
-8
View File
@@ -36,14 +36,6 @@ IcarusAction ActionManager::retrieveIcarusAction() const
return icarusAction;
}
bool ActionManager::isNumber(string_view val) noexcept
{
return !val.empty() && std::find_if(val.begin(),
val.end(), [](char c)
{
return !std::isdigit(c);
}) == val.end();
}
void ActionManager::initialize()