Skip to content

Commit

Permalink
IOSS: Fix missed symbol in previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
gsjaardema committed Jun 28, 2023
1 parent 6e960ad commit e5c5b38
Show file tree
Hide file tree
Showing 2 changed files with 2,713 additions and 2,684 deletions.
2 changes: 1 addition & 1 deletion packages/seacas/applications/exodiff/ED_SystemInterface.C
Original file line number Diff line number Diff line change
Expand Up @@ -1578,7 +1578,7 @@ namespace {
// A "!" in front of a name means to exclude the name so no
// need to look for difference type and tolerance.
std::string tmp = tok;
if (extract_token(tmp, "!") != "") {
if (!extract_token(tmp, "!").empty()) {
names.push_back(tok);
toler.push_back(def_tol);
}
Expand Down
Loading

0 comments on commit e5c5b38

Please sign in to comment.