mirror of
https://github.com/Z3Prover/z3
synced 2025-04-28 03:15:50 +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
|
@ -190,8 +190,8 @@ namespace datalog {
|
|||
func_decl_ref m_pred;
|
||||
reg_idx m_reg;
|
||||
public:
|
||||
instr_io(bool store, func_decl_ref pred, reg_idx reg)
|
||||
: m_store(store), m_pred(std::move(pred)), m_reg(reg) {}
|
||||
instr_io(bool store, func_decl_ref const& pred, reg_idx reg)
|
||||
: m_store(store), m_pred(pred), m_reg(reg) {}
|
||||
virtual bool perform(execution_context & ctx) {
|
||||
log_verbose(ctx);
|
||||
if (m_store) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue