summaryrefslogtreecommitdiff
path: root/src/printer/printer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/printer/printer.cpp')
-rw-r--r--src/printer/printer.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/printer/printer.cpp b/src/printer/printer.cpp
index 24baafa14..54482a8c3 100644
--- a/src/printer/printer.cpp
+++ b/src/printer/printer.cpp
@@ -125,12 +125,12 @@ void Printer::toStream(std::ostream& out, const SExpr& sexpr) const throw() {
}
out << ')';
}
-}/* Printer::toStream() */
+}/* Printer::toStream(SExpr) */
-void Printer::toStream(std::ostream& out, Model* m ) const throw(){
- for( int i=0; i<m->getNumCommands(); i++ ){
- toStream( out, m, m->getCommand( i ), m->getCommandType( i ) );
+void Printer::toStream(std::ostream& out, Model* m) const throw() {
+ for(size_t i = 0; i < m->getNumCommands(); i++ ){
+ toStream(out, m, m->getCommand(i), m->getCommandType(i));
}
-}
+}/* Printer::toStream(Model) */
}/* CVC4 namespace */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback