Skip to content

Commit

Permalink
Fixed some unintensional recursive calls.
Browse files Browse the repository at this point in the history
  • Loading branch information
pbehne committed Jul 28, 2024
1 parent 8e38003 commit c8205c8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions framework/src/utils/MultiMooseEnum.C
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ void
MultiMooseEnum::erase(const std::string & names)
{
mooseDeprecated("MultiMooseEnum::erase is deprecated, use MultiMooseEnum::eraseSetValue");
MultiMooseEnum::erase(names);
MultiMooseEnum::eraseSetValue(names);
}

void
Expand All @@ -197,7 +197,7 @@ void
MultiMooseEnum::erase(const std::vector<std::string> & names)
{
mooseDeprecated("MultiMooseEnum::erase is deprecated, use MultiMooseEnum::eraseSetValue");
MultiMooseEnum::erase(names);
MultiMooseEnum::eraseSetValue(names);
}

void
Expand All @@ -210,7 +210,7 @@ void
MultiMooseEnum::erase(const std::set<std::string> & names)
{
mooseDeprecated("MultiMooseEnum::erase is deprecated, use MultiMooseEnum::eraseSetValue");
MultiMooseEnum::erase(names);
MultiMooseEnum::eraseSetValue(names);
}

void
Expand Down

0 comments on commit c8205c8

Please sign in to comment.