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,7 +16,8 @@
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,
@ -24,7 +25,7 @@ enum Suffix {
INTEL = 1<<3, INTEL = 1<<3,
KOKKOS = 1<<4 KOKKOS = 1<<4
}; };
}
} }
#endif #endif