Skip to content

Commit

Permalink
Merge pull request #29083 from lynnmunday/fix_error_message
Browse files Browse the repository at this point in the history
fix error message
  • Loading branch information
GiudGiud authored Nov 23, 2024
2 parents fe2ca24 + faf4cdf commit 9446d5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion framework/src/utils/FunctionParserUtils.C
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ FunctionParserUtils<is_ad>::addFParserConstants(
unsigned int nconst = constant_expressions.size();
if (nconst != constant_names.size())
mooseError("The parameter vectors constant_names (size " +
std::to_string(constant_names.size()) + ") and constant_values (size " +
std::to_string(constant_names.size()) + ") and constant_expressions (size " +
std::to_string(nconst) + ") must have equal length.");

// previously evaluated constant_expressions may be used in following constant_expressions
Expand Down

0 comments on commit 9446d5f

Please sign in to comment.