mirror of
https://github.com/Z3Prover/z3
synced 2025-05-04 22:35:45 +00:00
remove refs to bare_str
This commit is contained in:
parent
405a26c585
commit
011c1b2dd2
11 changed files with 46 additions and 49 deletions
|
@ -58,7 +58,7 @@ public:
|
|||
cmd * c = ctx.find_cmd(s);
|
||||
if (c == nullptr) {
|
||||
std::string err_msg("unknown command '");
|
||||
err_msg = err_msg + s.bare_str() + "'";
|
||||
err_msg = err_msg + s.str() + "'";
|
||||
throw cmd_exception(std::move(err_msg));
|
||||
}
|
||||
m_cmds.push_back(s);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue