mirror of
https://github.com/Z3Prover/z3
synced 2025-04-29 03:45:51 +00:00
fix crashes with MSVC 2019
This commit is contained in:
parent
aeac0b46a0
commit
b7caabbd0f
2 changed files with 4 additions and 1 deletions
|
@ -63,6 +63,10 @@ public:
|
|||
m_value = std::move(arg);
|
||||
}
|
||||
|
||||
void operator=(const T &arg) {
|
||||
m_value = arg;
|
||||
}
|
||||
|
||||
operator T&() {
|
||||
return m_value;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue