make clang++ happy when trying to compile the GPU library

This commit is contained in:
Axel Kohlmeyer
2019-07-12 15:42:16 -04:00
parent 7109c1013a
commit e832b5d50b
61 changed files with 124 additions and 79 deletions

View File

@ -23,7 +23,7 @@ const char *coul_long_cs=0;
#include "lal_coul_long_cs.h"
#include <cassert>
using namespace LAMMPS_AL;
namespace LAMMPS_AL {
#define CoulLongCST CoulLongCS<numtyp, acctyp>
extern Device<PRECISION,ACC_PRECISION> pair_gpu_device;
@ -76,3 +76,4 @@ int CoulLongCST::init(const int ntypes, double **host_scale,
}
template class CoulLongCS<PRECISION,ACC_PRECISION>;
}