Skip to content
Snippets Groups Projects
Commit bb240994 authored by Matthew Andrew's avatar Matthew Andrew
Browse files

Applied clang format Re #23642

parent b4fe6694
No related branches found
No related tags found
No related merge requests found
...@@ -209,9 +209,8 @@ std::map<std::string, std::string> MuonGroupingAsymmetry::validateInputs() { ...@@ -209,9 +209,8 @@ std::map<std::string, std::string> MuonGroupingAsymmetry::validateInputs() {
errors["GroupName"] = "Group name must be specified."; errors["GroupName"] = "Group name must be specified.";
} }
if (!std::all_of( if (!std::all_of(std::begin(groupName), std::end(groupName),
std::begin(groupName), std::end(groupName), Mantid::MuonAlgorithmHelper::isAlphanumericOrUnderscore)) {
Mantid::MuonAlgorithmHelper::isAlphanumericOrUnderscore)) {
errors["GroupName"] = errors["GroupName"] =
"The group name must contain alphnumeric characters and _ only."; "The group name must contain alphnumeric characters and _ only.";
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment