summaryrefslogtreecommitdiff
path: root/src/util/bin_heap.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/bin_heap.h')
-rw-r--r--src/util/bin_heap.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util/bin_heap.h b/src/util/bin_heap.h
index 7d733829b..d547530b1 100644
--- a/src/util/bin_heap.h
+++ b/src/util/bin_heap.h
@@ -60,8 +60,8 @@ private:
CmpFcn d_cmp;
// disallow copy and assignment
- BinaryHeap(const BinaryHeap&) CVC4_UNDEFINED;
- BinaryHeap& operator=(const BinaryHeap&) CVC4_UNDEFINED;
+ BinaryHeap(const BinaryHeap&) = delete;
+ BinaryHeap& operator=(const BinaryHeap&) = delete;
public:
BinaryHeap(const CmpFcn& c = CmpFcn())
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback