Skip to content
Snippets Groups Projects
Commit 425142ba authored by Anders Hafreager's avatar Anders Hafreager Committed by Axel Kohlmeyer
Browse files

Fixed initialization of arrays in fixes

parent 07eb1d44
No related branches found
No related tags found
No related merge requests found
...@@ -41,7 +41,8 @@ enum{CONSTANT,EQUAL}; ...@@ -41,7 +41,8 @@ enum{CONSTANT,EQUAL};
/* ---------------------------------------------------------------------- */ /* ---------------------------------------------------------------------- */
FixTempCSLD::FixTempCSLD(LAMMPS *lmp, int narg, char **arg) : FixTempCSLD::FixTempCSLD(LAMMPS *lmp, int narg, char **arg) :
Fix(lmp, narg, arg) Fix(lmp, narg, arg),
vhold(NULL), tstr(NULL), id_temp(NULL), random(NULL)
{ {
if (narg != 7) error->all(FLERR,"Illegal fix temp/csld command"); if (narg != 7) error->all(FLERR,"Illegal fix temp/csld command");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment