mirror of
https://github.com/Z3Prover/z3
synced 2025-06-19 04:13:38 +00:00
remove static from format (not thread safe), remove std::move #1466
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
2853558bc2
commit
3e810d6c54
3 changed files with 5 additions and 5 deletions
|
@ -88,7 +88,7 @@ class elim_aux_assertions {
|
|||
|
||||
app_ref m_aux;
|
||||
public:
|
||||
elim_aux_assertions(app_ref aux) : m_aux(std::move(aux)) {}
|
||||
elim_aux_assertions(app_ref const& aux) : m_aux(aux) {}
|
||||
|
||||
void mk_or_core(expr_ref_vector &args, expr_ref &res)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue