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

@ -53,13 +53,13 @@ Update::Update(LAMMPS *lmp) : Pointers(lmp)
eflag_global = vflag_global = -1;
dt_default = 1;
unit_style = NULL;
unit_style = nullptr;
set_units("lj");
integrate_style = NULL;
integrate = NULL;
minimize_style = NULL;
minimize = NULL;
integrate_style = nullptr;
integrate = nullptr;
minimize_style = nullptr;
minimize = nullptr;
integrate_map = new IntegrateCreatorMap();