mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 17:15:31 +00:00
fix uninitialized variable warnings
This commit is contained in:
parent
27cc928631
commit
648cf9602e
5 changed files with 10 additions and 10 deletions
|
@ -52,7 +52,7 @@ public:
|
|||
}
|
||||
}
|
||||
|
||||
stacked_value() = default;
|
||||
stacked_value(): m_value() { }
|
||||
stacked_value(const T& m) {
|
||||
m_value = m;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue