summaryrefslogtreecommitdiff
path: root/src/expr/attribute_internals.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/expr/attribute_internals.h')
-rw-r--r--src/expr/attribute_internals.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/expr/attribute_internals.h b/src/expr/attribute_internals.h
index a0086440b..fa6459481 100644
--- a/src/expr/attribute_internals.h
+++ b/src/expr/attribute_internals.h
@@ -357,6 +357,15 @@ public:
super::clear();
}
+ /** Is the hash table empty? */
+ bool empty() const {
+ return super::empty();
+ }
+
+ /** This is currently very misleading! */
+ size_t size() const {
+ return super::size();
+ }
};/* class AttrHash<bool> */
/**
@@ -558,6 +567,16 @@ public:
super::clear();
}
+ /** Is the hash table empty? */
+ bool empty() const {
+ return super::empty();
+ }
+
+ /** This is currently very misleading! */
+ size_t size() const {
+ return super::size();
+ }
+
};/* class CDAttrHash<bool> */
}/* CVC4::expr::attr namespace */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback