mirror of
https://github.com/Z3Prover/z3
synced 2025-04-08 02:15:19 +00:00
fix crash
This commit is contained in:
parent
122f5a1464
commit
d1a0e83423
|
@ -59,6 +59,10 @@ public:
|
|||
m_value = std::move(m);
|
||||
}
|
||||
|
||||
void operator=(T &&arg) {
|
||||
m_value = std::move(arg);
|
||||
}
|
||||
|
||||
operator T&() {
|
||||
return m_value;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue