Merge pull request #2358 from eagunn/iss2345

Replace instances of NULL with nullptr
This commit is contained in:
Axel Kohlmeyer
2020-09-15 17:41:24 -04:00
committed by GitHub
1185 changed files with 8417 additions and 8329 deletions

View File

@ -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;