Update Kokkos library in LAMMPS to v3.4.0

This commit is contained in:
Stan Gerald Moore
2021-04-26 16:28:19 -06:00
parent 39f3c1684f
commit 692da3bf88
358 changed files with 16375 additions and 10003 deletions

View File

@ -0,0 +1,8 @@
#include <type_traits>
int main() {
// _t versions of type traits were added in C++14
std::remove_cv_t<int> i = 0;
return i;
}