3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-09-17 23:21:28 +00:00

DoC: fix fast_empty() for tables without columns

Signed-off-by: Nuno Lopes <a-nlopes@microsoft.com>
This commit is contained in:
Nuno Lopes 2015-01-28 11:38:26 +00:00
parent 9e447281ed
commit 1701af9dc9
2 changed files with 2 additions and 2 deletions

View file

@ -1127,7 +1127,7 @@ namespace datalog {
// fast_pass(t, n);
}
*/
if (n.get_signature().size() == 0)
if (n.get_signature().empty())
t.get_udoc().reset(t.get_dm());
else if (m_is_subtract)
t.get_udoc().subtract(t.get_dm(), n.get_udoc());