3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-08 02:15:19 +00:00

fix crash

This commit is contained in:
Nuno Lopes 2020-07-13 14:25:12 +01:00
parent 122f5a1464
commit d1a0e83423

View file

@ -59,6 +59,10 @@ public:
m_value = std::move(m);
}
void operator=(T &&arg) {
m_value = std::move(arg);
}
operator T&() {
return m_value;
}