Skip to content
Snippets Groups Projects

ISF_ActsTools: Fix cppcheck warning.

Merged Scott Snyder requested to merge ssnyder/athena:cppcheck.ISF_ActsTools-20221203 into master
1 file
+ 1
2
Compare changes
  • Side-by-side
  • Inline
@@ -159,8 +159,7 @@ class ActsFatrasSimTool : public BaseSimulatorTool {
if (not result.ok()) {
return result.error();
}
auto &value = result.value().template get<Result>();
return std::move(value);
return result.value().template get<Result>();
}
};// end of SingleParticleSimulation
Loading