Skip to content

Commit

Permalink
Merge pull request #4438 from thehans/issue4432
Browse files Browse the repository at this point in the history
Fix additional close parenthesis causing compile errors.
  • Loading branch information
thehans committed Dec 6, 2022
2 parents 40aae29 + 2be1987 commit 972d184
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/Parameters.cc
Expand Up @@ -275,7 +275,7 @@ void print_argConvert_positioned_warning(
}
message << ")";
}
message << ", found " << found.typeName()) << " " << "(" << found.toEchoStringNoThrow() << ")";
message << ", found " << found.typeName() << " " << "(" << found.toEchoStringNoThrow() << ")";
LOG(message_group::Warning, loc, documentRoot, "%1$s", message.str());
}

Expand Down

0 comments on commit 972d184

Please sign in to comment.