Skip to content
Snippets Groups Projects
Commit f76b7b85 authored by Giovanni Bussi's avatar Giovanni Bussi
Browse files

Fixed uninitialized value

parent 8be21afa
No related branches found
No related tags found
No related merge requests found
......@@ -120,7 +120,8 @@ void LocalAverage::registerKeywords( Keywords& keys ){
LocalAverage::LocalAverage(const ActionOptions& ao):
Action(ao),
MultiColvarFunction(ao)
MultiColvarFunction(ao),
jstart(0)
{
// Read in the switching function
std::string sw, errors; parse("SWITCH",sw);
......
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