mirror of
https://github.com/Z3Prover/z3
synced 2025-09-20 16:34:50 +00:00
Prefer using empty rather than size comparisons.
This commit is contained in:
parent
a83097d5cc
commit
e570940662
56 changed files with 104 additions and 104 deletions
|
@ -72,7 +72,7 @@ namespace datalog {
|
|||
~sparse_table_plugin() override;
|
||||
|
||||
bool can_handle_signature(const table_signature & s) override
|
||||
{ return s.size()>0; }
|
||||
{ return !s.empty(); }
|
||||
|
||||
table_base * mk_empty(const table_signature & s) override;
|
||||
sparse_table * mk_clone(const sparse_table & t);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue