mirror of
https://github.com/Z3Prover/z3
synced 2026-05-04 09:25:15 +00:00
Eliminate unnecessary copy operations in function parameters and range-based loops (#8589)
This commit is contained in:
parent
8fbf3f0169
commit
730a54a767
11 changed files with 34 additions and 34 deletions
|
|
@ -90,7 +90,7 @@ inline std::ostream& operator<<(std::ostream& out, lp_status status) {
|
|||
return out << lp_status_to_string(status);
|
||||
}
|
||||
|
||||
lp_status lp_status_from_string(std::string status);
|
||||
lp_status lp_status_from_string(const std::string& status);
|
||||
|
||||
|
||||
class lp_resource_limit {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue