summaryrefslogtreecommitdiff
path: root/src/theory/theory.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/theory.h')
-rw-r--r--src/theory/theory.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/theory/theory.h b/src/theory/theory.h
index 2c3c727cb..5d176a36b 100644
--- a/src/theory/theory.h
+++ b/src/theory/theory.h
@@ -83,9 +83,9 @@ private:
friend class ::CVC4::TheoryEngine;
// Disallow default construction, copy, assignment.
- Theory() CVC4_UNDEFINED;
- Theory(const Theory&) CVC4_UNDEFINED;
- Theory& operator=(const Theory&) CVC4_UNDEFINED;
+ Theory() = delete;
+ Theory(const Theory&) = delete;
+ Theory& operator=(const Theory&) = delete;
/** An integer identifying the type of the theory. */
TheoryId d_id;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback