summaryrefslogtreecommitdiff
path: root/src/context/cdhashset.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/context/cdhashset.h')
-rw-r--r--src/context/cdhashset.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/context/cdhashset.h b/src/context/cdhashset.h
index 881c3f629..18a39754e 100644
--- a/src/context/cdhashset.h
+++ b/src/context/cdhashset.h
@@ -30,6 +30,10 @@ template <class V, class HashFcn>
class CDHashSet : protected CDInsertHashMap<V, bool, HashFcn> {
typedef CDInsertHashMap<V, bool, HashFcn> super;
+ // no copy or assignment
+ CDHashSet(const CDHashSet&) CVC4_UNDEFINED;
+ CDHashSet& operator=(const CDHashSet&) CVC4_UNDEFINED;
+
public:
// ensure these are publicly accessible
@@ -148,7 +152,7 @@ public:
return super::insertAtContextLevelZero(v, true);
}
-};/* class CDSet */
+};/* class CDHashSet */
}/* CVC4::context namespace */
}/* CVC4 namespace */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback