mirror of
https://github.com/Z3Prover/z3
synced 2025-07-21 11:52:05 +00:00
fix crash
This commit is contained in:
parent
122f5a1464
commit
d1a0e83423
1 changed files with 4 additions and 0 deletions
|
@ -59,6 +59,10 @@ public:
|
||||||
m_value = std::move(m);
|
m_value = std::move(m);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void operator=(T &&arg) {
|
||||||
|
m_value = std::move(arg);
|
||||||
|
}
|
||||||
|
|
||||||
operator T&() {
|
operator T&() {
|
||||||
return m_value;
|
return m_value;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue