This commit is contained in:
Timur A. Fatkhullin
2025-09-13 23:46:38 +03:00
parent 3ae2d41fc8
commit 92b1a3cfd5
4 changed files with 177 additions and 13 deletions

View File

@@ -52,7 +52,10 @@ namespace mcc
struct MccSimpleSlewModelCategory : public std::error_category {
MccSimpleSlewModelCategory() : std::error_category() {}
const char* name() const noexcept { return "ADC_GENERIC_DEVICE"; }
const char* name() const noexcept
{
return "ADC_GENERIC_DEVICE";
}
std::string message(int ec) const
{
@@ -164,7 +167,7 @@ public:
}
_stopRequested = other._stopRequested.load();
_slewFunc = std::move(_slewFunc);
_slewFunc = std::move(other._slewFunc);
return *this;
};