This commit is contained in:
Timur A. Fatkhullin
2024-01-21 01:57:15 +03:00
parent 096e74c099
commit 41a9c70e70
5 changed files with 224 additions and 43 deletions

View File

@@ -66,7 +66,7 @@ public:
_execFuncWrapper = [wrapper = traits::adc_pf_wrapper(std::forward<ExecFuncT>(exec_func)), this]() {
auto& exec_func = std::get<0>(wrapper);
value_t val = *_commandArgUptr;
value_t val = std::any_cast<value_t>(*_commandArgUptr);
exec_func(val);
};