Skip to content
Snippets Groups Projects
Commit b4220f4c authored by Anna Wellmann's avatar Anna Wellmann
Browse files

Add missing ;

parent 59f4d241
No related branches found
No related tags found
1 merge request!205Refactoring in ActuatorFarm
......@@ -15,7 +15,7 @@ inline auto RealEq = [](auto value) {
inline auto RealNear = [](auto value, auto max_abs_error) {
#ifdef VF_DOUBLE_ACCURACY
return testing::DoubleNear(value, max_abs_error)
return testing::DoubleNear(value, max_abs_error);
#else
return testing::FloatNear(value, max_abs_error);
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment