use correct namespace when instantiating IntelBuffers;

This commit is contained in:
Axel Kohlmeyer
2018-05-07 15:49:51 -04:00
parent 74fbb84b8c
commit b2370b6986

View File

@ -642,6 +642,6 @@ double IntelBuffers<flt_t, acc_t>::memory_usage(const int nthreads)
/* ---------------------------------------------------------------------- */ /* ---------------------------------------------------------------------- */
template class IntelBuffers<float,float>; template class LAMMPS_NS::IntelBuffers<float,float>;
template class IntelBuffers<float,double>; template class LAMMPS_NS::IntelBuffers<float,double>;
template class IntelBuffers<double,double>; template class LAMMPS_NS::IntelBuffers<double,double>;