3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-06-19 12:23:38 +00:00

add don't care option

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-01-12 17:00:05 -08:00
parent e0a41a18c3
commit 9f964be3f4
7 changed files with 201 additions and 98 deletions

View file

@ -122,7 +122,7 @@ symbol::symbol(char const * d) {
}
symbol & symbol::operator=(char const * d) {
m_data = g_symbol_tables->get_str(d);
m_data = d ? g_symbol_tables->get_str(d) : nullptr;
return *this;
}