diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2009-03-03 11:06:44 -0330 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2009-03-03 11:06:44 -0330 |
commit | 1dddbf612203ff1229411bb35f11620f34ae5100 (patch) | |
tree | a0bad7f2d10e36574cc6f37ca0ba7613313292d1 /cpp/src/Slice/Util.cpp | |
parent | Minor change to VS2005 README and removed old mcpp patches (diff) | |
download | ice-1dddbf612203ff1229411bb35f11620f34ae5100.tar.bz2 ice-1dddbf612203ff1229411bb35f11620f34ae5100.tar.xz ice-1dddbf612203ff1229411bb35f11620f34ae5100.zip |
skiped -> skipped
Diffstat (limited to 'cpp/src/Slice/Util.cpp')
-rw-r--r-- | cpp/src/Slice/Util.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
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<string> in; vector<string> out; IceUtilInternal::splitString(message, "\n", in); - bool skiped; + bool skipped; for(vector<string>::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"); } |