silence compiler warnings

This commit is contained in:
Axel Kohlmeyer
2022-02-17 17:03:05 -05:00
parent da3c3723bd
commit 537e3f2539
11 changed files with 15 additions and 21 deletions

View File

@ -21,7 +21,7 @@ namespace LAMMPS_AL {
extern Device<PRECISION,ACC_PRECISION> global_device;
template <class numtyp, class acctyp>
BaseAtomicT::BaseAtomic() : _compiled(false), _max_bytes(0), _onetype(0) {
BaseAtomicT::BaseAtomic() : _compiled(false), _onetype(0), _max_bytes(0) {
device=&global_device;
ans=new Answer<numtyp,acctyp>();
nbor=new Neighbor();