Skip to content

Commit

Permalink
Merge pull request #28831 from GiudGiud/PR_syntax
Browse files Browse the repository at this point in the history
Use syntax for variable name in new apps registerSyntax to have constistency with syntax registration macro
  • Loading branch information
loganharbour authored Nov 13, 2024
2 parents 7377410 + 6799861 commit e29fdfc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions stork/src/base/StorkApp.C.app
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ StorkApp::StorkApp(InputParameters parameters) : MooseApp(parameters)
StorkApp::~StorkApp() {}

void
StorkApp::registerAll(Factory & f, ActionFactory & af, Syntax & s)
StorkApp::registerAll(Factory & f, ActionFactory & af, Syntax & syntax)
{
ModulesApp::registerAllObjects<StorkApp>(f, af, s);
ModulesApp::registerAllObjects<StorkApp>(f, af, syntax);
Registry::registerObjectsTo(f, {"StorkApp"});
Registry::registerActionsTo(af, {"StorkApp"});

Expand Down

0 comments on commit e29fdfc

Please sign in to comment.