Commit 1074c673 authored by Dan Ibanez's avatar Dan Ibanez
Browse files

add missing return keywords

parent 60b48c9d
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -147,9 +147,9 @@ void NeighborKokkos::init_ex_mol_bit_kokkos()
int NeighborKokkos::check_distance()
{
  if (device_flag)
    check_distance_kokkos<LMPDeviceType>();
    return check_distance_kokkos<LMPDeviceType>();
  else
    check_distance_kokkos<LMPHostType>();
    return check_distance_kokkos<LMPHostType>();
}

template<class DeviceType>