mirror of
https://github.com/Z3Prover/z3
synced 2025-05-02 13:27:01 +00:00
Use const refs to reduce copying.
These are things that have been found by `clang-tidy`.
This commit is contained in:
parent
5a16d3ef7f
commit
177414c0ee
28 changed files with 62 additions and 62 deletions
|
@ -1303,7 +1303,7 @@ private:
|
|||
}
|
||||
}
|
||||
|
||||
void parse_rules_file(std::string fname) {
|
||||
void parse_rules_file(const std::string & fname) {
|
||||
SASSERT(file_exists(fname));
|
||||
flet<std::string> flet_cur_file(m_current_file, fname);
|
||||
|
||||
|
@ -1347,7 +1347,7 @@ private:
|
|||
return true;
|
||||
}
|
||||
|
||||
void parse_rel_file(std::string fname) {
|
||||
void parse_rel_file(const std::string & fname) {
|
||||
SASSERT(file_exists(fname));
|
||||
|
||||
IF_VERBOSE(10, verbose_stream() << "Parsing relation file " << fname << "\n";);
|
||||
|
@ -1496,7 +1496,7 @@ private:
|
|||
return true;
|
||||
}
|
||||
|
||||
void parse_map_file(std::string fname) {
|
||||
void parse_map_file(const std::string & fname) {
|
||||
SASSERT(file_exists(fname));
|
||||
|
||||
IF_VERBOSE(10, verbose_stream() << "Parsing map file " << fname << "\n";);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue