mirror of
https://github.com/Z3Prover/z3
synced 2025-04-24 17:45:32 +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);
|
||||
}
|
||||
|
||||
void operator=(T &&arg) {
|
||||
m_value = std::move(arg);
|
||||
}
|
||||
|
||||
operator T&() {
|
||||
return m_value;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue