Skip to content

Commit

Permalink
[Kinetics] Always initialize FalloffReaction.falloff
Browse files Browse the repository at this point in the history
Fixes #326
  • Loading branch information
speth committed Mar 23, 2016
1 parent a175c72 commit 60efb22
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/kinetics/Reaction.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,7 @@ std::string ThreeBodyReaction::productString() const {

FalloffReaction::FalloffReaction()
: Reaction(FALLOFF_RXN)
, falloff(new Falloff())
{
}

Expand All @@ -159,6 +160,7 @@ FalloffReaction::FalloffReaction(
, low_rate(low_rate_)
, high_rate(high_rate_)
, third_body(tbody)
, falloff(new Falloff())
{
}

Expand Down

0 comments on commit 60efb22

Please sign in to comment.