Skip to content
Snippets Groups Projects
Commit 64fb7674 authored by Stan Moore's avatar Stan Moore
Browse files

Fix compile warning in fix_freeze_kokkos

parent cce0755e
No related branches found
No related tags found
No related merge requests found
......@@ -49,11 +49,10 @@ class FixFreezeKokkos : public FixFreeze {
}
KOKKOS_INLINE_FUNCTION
volatile OriginalForce &operator+=(const volatile OriginalForce &rhs) volatile {
void operator+=(const volatile OriginalForce &rhs) volatile {
values[0] += rhs.values[0];
values[1] += rhs.values[1];
values[2] += rhs.values[2];
return *this;
}
};
......
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