Merge pull request #2358 from eagunn/iss2345
Replace instances of NULL with nullptr
This commit is contained in:
@ -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();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user