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:
parent
e0a41a18c3
commit
9f964be3f4
7 changed files with 201 additions and 98 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue