Fixing warning

git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@13642 f3b2605a-c512-4ea7-a41b-209d697bcdaa
This commit is contained in:
stamoor
2015-07-17 18:15:35 +00:00
parent d9ad60f611
commit 6d665f1860

View File

@ -396,9 +396,9 @@ void NeighborKokkos::operator()(TagNeighborCheckDistance<DeviceType>, const int
void NeighborKokkos::build(int topoflag)
{
if (nlist_device)
this->template build_kokkos<LMPDeviceType>(topoflag);
build_kokkos<LMPDeviceType>(topoflag);
else
this->template build_kokkos<LMPHostType>(topoflag);
build_kokkos<LMPHostType>(topoflag);
}
template<class DeviceType>