You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
P: normalA defect affecting operation with a low possibility of significantly affects.T: defectAn anomaly, which is anything that deviates from expectations.
The registerSyntax macro (and possibly others) use the "syntax" variable name, but the registerAll() function in a new stork-created app's constructor (src/base/<AppName>App.C) uses the local variable "s". Workaround for now is to add auto & syntax = s; before registering.
Create a new app from stork.sh and add custom syntax like registerSyntax("MyAction", "SyntaxString");
Impact
More of an annoyance since there is a workaround
[Optional] Diagnostics
No response
The text was updated successfully, but these errors were encountered:
jessecarterMOOSE
added
P: normal
A defect affecting operation with a low possibility of significantly affects.
T: defect
An anomaly, which is anything that deviates from expectations.
labels
Oct 11, 2024
GiudGiud
added a commit
to GiudGiud/moose
that referenced
this issue
Oct 11, 2024
P: normalA defect affecting operation with a low possibility of significantly affects.T: defectAn anomaly, which is anything that deviates from expectations.
Bug Description
The
registerSyntax
macro (and possibly others) use the "syntax" variable name, but theregisterAll()
function in a new stork-created app's constructor (src/base/<AppName>App.C) uses the local variable "s". Workaround for now is to addauto & syntax = s;
before registering.@GiudGiud From discussion in #28826
Steps to Reproduce
Create a new app from stork.sh and add custom syntax like
registerSyntax("MyAction", "SyntaxString");
Impact
More of an annoyance since there is a workaround
[Optional] Diagnostics
No response
The text was updated successfully, but these errors were encountered: