Commit 994f36bc authored by Dan Ibanez's avatar Dan Ibanez Committed by Stan Gerald Moore (stamoor)
Browse files

silence "implicit dereference" warning

see kokkos/kokkos#177 for detailed
discussion of the issue and fix
parent b3557bfb
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -43,11 +43,10 @@ struct s_double_3 {
  }

  KOKKOS_INLINE_FUNCTION
  volatile s_double_3& operator+=(const volatile s_double_3 &rhs) volatile {
  void operator+=(const volatile s_double_3 &rhs) volatile {
    d0 += rhs.d0;
    d1 += rhs.d1;
    d2 += rhs.d2;
    return *this;
  }
};
typedef s_double_3 double_3;