mirror of
https://github.com/Z3Prover/z3
synced 2025-08-24 03:57:51 +00:00
remove a few string copies
This commit is contained in:
parent
db5a1a7604
commit
b2d5c24c1d
18 changed files with 39 additions and 80 deletions
|
@ -273,7 +273,7 @@ namespace sat {
|
|||
std::string cut::table2string(unsigned num_input, uint64_t table) {
|
||||
std::ostringstream strm;
|
||||
display_table(strm, num_input, table);
|
||||
return strm.str();
|
||||
return std::move(strm).str();
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue