From 4290d38b1a8dbc5576c206a7d4f2db14d16362ca Mon Sep 17 00:00:00 2001 From: Martin Nowack Date: Thu, 29 May 2014 23:22:43 +0200 Subject: Avoid non-explicit use of functions from std namespace in KLEE --- lib/Expr/ExprSMTLIBPrinter.cpp | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'lib/Expr/ExprSMTLIBPrinter.cpp') diff --git a/lib/Expr/ExprSMTLIBPrinter.cpp b/lib/Expr/ExprSMTLIBPrinter.cpp index 1cdab762..e1a49afb 100644 --- a/lib/Expr/ExprSMTLIBPrinter.cpp +++ b/lib/Expr/ExprSMTLIBPrinter.cpp @@ -11,8 +11,6 @@ #include "llvm/Support/CommandLine.h" #include "klee/util/ExprSMTLIBPrinter.h" -using namespace std; - namespace ExprSMTLIBOptions { // Command line options llvm::cl::opt @@ -495,7 +493,7 @@ void ExprSMTLIBPrinter::printArrayDeclarations() { /*loop over elements in the array and generate an assert statement for each one */ - for (vector >::const_iterator + for (std::vector >::const_iterator ce = array->constantValues.begin(); ce != array->constantValues.end(); ce++, byteIndex++) { *p << "(assert ("; @@ -556,7 +554,7 @@ void ExprSMTLIBPrinter::printAction() { const Array *theArray = 0; // loop over the array names - for (vector::const_iterator it = + for (std::vector::const_iterator it = arraysToCallGetValueOn->begin(); it != arraysToCallGetValueOn->end(); it++) { theArray = *it; @@ -882,7 +880,8 @@ ExprSMTLIBPrinter::setArrayValuesToGet(const std::vector &a) { * that the solver knows what to do when we ask for the values of arrays * that don't feature in our query! */ - for (vector::const_iterator i = a.begin(); i != a.end(); ++i) { + for (std::vector::const_iterator i = a.begin(); i != a.end(); + ++i) { usedArrays.insert(*i); } } -- cgit 1.4.1