3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-09-30 13:19:04 +00:00

remove copy in generic_model_converter

This commit is contained in:
Nuno Lopes 2018-07-03 17:51:40 +01:00
parent f00264663c
commit 72f60f5bfc
2 changed files with 2 additions and 11 deletions

View file

@ -30,13 +30,6 @@ class generic_model_converter : public model_converter {
instruction m_instruction;
entry(func_decl* f, expr* d, ast_manager& m, instruction i):
m_f(f, m), m_def(d, m), m_instruction(i) {}
entry& operator=(entry const& other) {
m_f = other.m_f;
m_def = other.m_def;
m_instruction = other.m_instruction;
return *this;
}
};
ast_manager& m;
std::string m_orig;