Merge pull request #2358 from eagunn/iss2345
Replace instances of NULL with nullptr
This commit is contained in:
@ -27,9 +27,9 @@ NBin::NBin(LAMMPS *lmp) : Pointers(lmp)
|
||||
{
|
||||
last_bin = -1;
|
||||
mbins = maxbin = maxatom = 0;
|
||||
binhead = NULL;
|
||||
bins = NULL;
|
||||
atom2bin = NULL;
|
||||
binhead = nullptr;
|
||||
bins = nullptr;
|
||||
atom2bin = nullptr;
|
||||
|
||||
neighbor->last_setup_bins = -1;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user