summaryrefslogtreecommitdiff
path: root/src/context/context.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/context/context.h')
-rw-r--r--src/context/context.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/context/context.h b/src/context/context.h
index 2b907ca2a..02d82a6d3 100644
--- a/src/context/context.h
+++ b/src/context/context.h
@@ -5,7 +5,7 @@
** Major contributors: Clark Barrett
** Minor contributors (to current version): Tim King, Dejan Jovanovic
** This file is part of the CVC4 project.
- ** Copyright (c) 2009-2013 New York University and The University of Iowa
+ ** Copyright (c) 2009-2014 New York University and The University of Iowa
** See the file COPYING in the top-level source directory for licensing
** information.\endverbatim
**
@@ -94,8 +94,8 @@ class Context {
operator<<(std::ostream&, const Context&) throw(AssertionException);
// disable copy, assignment
- Context(const Context&) CVC4_UNUSED;
- Context& operator=(const Context&) CVC4_UNUSED;
+ Context(const Context&) CVC4_UNDEFINED;
+ Context& operator=(const Context&) CVC4_UNDEFINED;
public:
@@ -208,8 +208,8 @@ public:
class UserContext : public Context {
private:
// disable copy, assignment
- UserContext(const UserContext&) CVC4_UNUSED;
- UserContext& operator=(const UserContext&) CVC4_UNUSED;
+ UserContext(const UserContext&) CVC4_UNDEFINED;
+ UserContext& operator=(const UserContext&) CVC4_UNDEFINED;
public:
UserContext() {}
};/* class UserContext */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback