From 1dddbf612203ff1229411bb35f11620f34ae5100 Mon Sep 17 00:00:00 2001 From: Dwayne Boone Date: Tue, 3 Mar 2009 11:06:44 -0330 Subject: skiped -> skipped --- cpp/src/Slice/Util.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'cpp/src/Slice/Util.cpp') diff --git a/cpp/src/Slice/Util.cpp b/cpp/src/Slice/Util.cpp index 1ca06773b86..033e21384aa 100644 --- a/cpp/src/Slice/Util.cpp +++ b/cpp/src/Slice/Util.cpp @@ -270,10 +270,10 @@ Slice::filterMcppWarnings(const string& message) vector in; vector out; IceUtilInternal::splitString(message, "\n", in); - bool skiped; + bool skipped; for(vector::const_iterator i = in.begin(); i != in.end(); i++) { - skiped = false; + skipped = false; if(i->find(warningPrefix) != string::npos) { @@ -281,11 +281,11 @@ Slice::filterMcppWarnings(const string& message) { if(i->find(messages[j]) != string::npos) { - // This line should be skiped it contains the unwanted mcpp warning - // next line should also be skiped it contains the slice line that - // produces the skiped warning + // This line should be skipped it contains the unwanted mcpp warning + // next line should also be skipped it contains the slice line that + // produces the skipped warning i++; - skiped = true; + skipped = true; // // Check if next lines are still the same warning // @@ -319,7 +319,7 @@ Slice::filterMcppWarnings(const string& message) break; } } - if(!skiped) + if(!skipped) { out.push_back(*i + "\n"); } -- cgit v1.2.3