Skip to content

Commit

Permalink
Fix incorrect virtual specifier on FalloffRate::evalFromStruct
Browse files Browse the repository at this point in the history
  • Loading branch information
speth committed Jan 24, 2023
1 parent 4e81e9b commit f6080c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/cantera/kinetics/Falloff.h
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ class FalloffRate : public ReactionRate

//! Evaluate reaction rate
//! @param shared_data data shared by all reactions of a given type
virtual double evalFromStruct(const FalloffData& shared_data) {
double evalFromStruct(const FalloffData& shared_data) {
updateTemp(shared_data.temperature, m_work.data());
m_rc_low = m_lowRate.evalRate(shared_data.logT, shared_data.recipT);
m_rc_high = m_highRate.evalRate(shared_data.logT, shared_data.recipT);
Expand Down

0 comments on commit f6080c6

Please sign in to comment.