From ed26218fdf5b0ba5a9a6c7611a5b787186185b8d Mon Sep 17 00:00:00 2001 From: Guillaume Poussel Date: Tue, 4 Jan 2011 22:40:36 +0100 Subject: Removing few cppchecks warnings. --- guw/guw.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'guw') diff --git a/guw/guw.cc b/guw/guw.cc index ef6e5eb93f9b..a3a2f86fe69f 100644 --- a/guw/guw.cc +++ b/guw/guw.cc @@ -290,7 +290,7 @@ void init_ignorepara(string fullcommand) { bool is_ignorepara(const string ¶) { for( vector::iterator it = ignorepara_vec.begin(); - it != ignorepara_vec.end(); it++ ) { + it != ignorepara_vec.end(); ++it ) { if ( para.find(*it) != string::npos ) { if ( debug ) cerr << "Found execption para: " << para << endl; -- cgit