Skip to content

Commit

Permalink
Added break when searching for reserved keyword
Browse files Browse the repository at this point in the history
  • Loading branch information
acpaquette committed Nov 13, 2024
1 parent c0c8f12 commit 5b3fe5b
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions isis/src/base/objs/PvlKeyword/PvlKeyword.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1408,6 +1408,7 @@ namespace Isis {
for (const auto &reservedKeywordName : reservedKeywordNames) {
if (keywordNameUpper == reservedKeywordName) {
allowedValueless = true;
break;
}
}
return allowedValueless;
Expand Down

0 comments on commit 5b3fe5b

Please sign in to comment.