Skip to content

Commit

Permalink
Use syntax for variable name in new apps registerSyntax to have const…
Browse files Browse the repository at this point in the history
…istency with syntax registration macro

closes #28830
  • Loading branch information
GiudGiud committed Oct 11, 2024
1 parent 45387e8 commit 6799861
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 6799861

Please sign in to comment.