Open
Description
The following line in ResInsight is incorrectly updated by clang-tidy-19
std::expected<caf::PdmObjectHandle, QString> result = method->execute();
is changed to
std::unexpected<caf::PdmObjectHandle, QString> result = method->execute();
Using auto result = method->execute();
works correct without any issues.