Unverified Commit c23f1646 authored by Axel Kohlmeyer's avatar Axel Kohlmeyer
Browse files

Increase portability to more C++ compilers

parent c47245c6
Loading
Loading
Loading
Loading
+10 −9
Original line number Diff line number Diff line
@@ -16,7 +16,8 @@

namespace LAMMPS_NS {

enum Suffix {
namespace Suffix {
  enum {
    NONE   = 0,
    OPT    = 1<<0,
    GPU    = 1<<1,
@@ -24,7 +25,7 @@ enum Suffix {
    INTEL  = 1<<3,
    KOKKOS = 1<<4
  };

}
}

#endif