Added new statuses

This commit is contained in:
Yury Shuvakin
2025-11-21 14:42:03 +03:00
parent b861ce003c
commit fbfdc35e0f
4 changed files with 28 additions and 11 deletions

View File

@@ -73,9 +73,9 @@ private:
}
template<typename T>
static bool isParameterEmpty(T /*parameter*/)
static bool isParameterEmpty(T parameter)
{
return std::numeric_limits<T>::max();
return parameter == std::numeric_limits<T>::max();
}
private: