mirror of
https://github.com/Z3Prover/z3
synced 2025-04-15 13:28:47 +00:00
rename del to remove to avoid compiler error
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
c708691a50
commit
dabf88b95d
|
@ -361,7 +361,7 @@ namespace datatype {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
void plugin::del(symbol const& s) {
|
void plugin::remove(symbol const& s) {
|
||||||
def* d = 0;
|
def* d = 0;
|
||||||
if (m_defs.find(s, d)) dealloc(d);
|
if (m_defs.find(s, d)) dealloc(d);
|
||||||
m_defs.remove(s);
|
m_defs.remove(s);
|
||||||
|
|
|
@ -267,7 +267,7 @@ namespace datatype {
|
||||||
|
|
||||||
def* mk(symbol const& name, unsigned n, sort * const * params);
|
def* mk(symbol const& name, unsigned n, sort * const * params);
|
||||||
|
|
||||||
void del(symbol const& d);
|
void remove(symbol const& d);
|
||||||
|
|
||||||
bool mk_datatypes(unsigned num_datatypes, def * const * datatypes, unsigned num_params, sort* const* sort_params, sort_ref_vector & new_sorts);
|
bool mk_datatypes(unsigned num_datatypes, def * const * datatypes, unsigned num_params, sort* const* sort_params, sort_ref_vector & new_sorts);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue