summaryrefslogtreecommitdiff
path: root/src/context/cdvector.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/context/cdvector.h')
-rw-r--r--src/context/cdvector.h10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/context/cdvector.h b/src/context/cdvector.h
index 52e1d52bb..30699670f 100644
--- a/src/context/cdvector.h
+++ b/src/context/cdvector.h
@@ -2,10 +2,10 @@
/*! \file cdvector.h
** \verbatim
** Original author: Tim King
- ** Major contributors: none
- ** Minor contributors (to current version): Morgan Deters
+ ** Major contributors: Morgan Deters
+ ** Minor contributors (to current version): none
** 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
**
@@ -86,6 +86,10 @@ private:
Context* d_context;
+ // no copy or assignment
+ CDVector(const CDVector&) CVC4_UNDEFINED;
+ CDVector& operator=(const CDVector&) CVC4_UNDEFINED;
+
public:
CDVector(Context* c) :
d_current(),
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback