summaryrefslogtreecommitdiff
path: root/src/main
diff options
context:
space:
mode:
Diffstat (limited to 'src/main')
-rw-r--r--src/main/interactive_shell.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main/interactive_shell.cpp b/src/main/interactive_shell.cpp
index b2c8b8c1d..f99eef4a1 100644
--- a/src/main/interactive_shell.cpp
+++ b/src/main/interactive_shell.cpp
@@ -2,10 +2,10 @@
/*! \file interactive_shell.cpp
** \verbatim
** Original author: cconway
- ** Major contributors:
- ** Minor contributors (to current version):
+ ** Major contributors: none
+ ** Minor contributors (to current version): none
** This file is part of the CVC4 prototype.
- ** Copyright (c) 2009, 2010 The Analysis of Computer Systems Group (ACSys)
+ ** Copyright (c) 2009, 2010, 2011 The Analysis of Computer Systems Group (ACSys)
** Courant Institute of Mathematical Sciences
** New York University
** See the file COPYING in the top-level source directory for licensing
@@ -98,7 +98,7 @@ Command* InteractiveShell::readCommand() {
}
/* Extract the newline delimiter from the stream too */
- int c = d_in.get();
+ int c CVC4_UNUSED = d_in.get();
Assert( c == '\n' );
// cout << "Next char is '" << (char)c << "'" << endl << flush;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback