Increase portability to more C++ compilers

This commit is contained in:
Axel Kohlmeyer
2020-02-14 13:40:31 -05:00
parent c47245c629
commit c23f164639

View File

@ -16,15 +16,16 @@
namespace LAMMPS_NS { namespace LAMMPS_NS {
enum Suffix { namespace Suffix {
enum {
NONE = 0, NONE = 0,
OPT = 1<<0, OPT = 1<<0,
GPU = 1<<1, GPU = 1<<1,
OMP = 1<<2, OMP = 1<<2,
INTEL = 1<<3, INTEL = 1<<3,
KOKKOS = 1<<4 KOKKOS = 1<<4
}; };
}
} }
#endif #endif