fix for Epeck

This commit is contained in:
Laurent Rineau 2025-11-12 11:01:17 +01:00
parent 529aba194b
commit e066f36afd
1 changed files with 1 additions and 1 deletions

View File

@ -1010,7 +1010,7 @@ protected:
template <typename T> static decltype(auto) exact(T&& obj) {
if constexpr(has_exact_member_function<T>::value) {
return std::forward<T>(obj).exact();
obj.exact();
}
return std::forward<T>(obj);
}