diff options
author | Marc Laukien <marc@zeroc.com> | 2004-12-13 21:40:53 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2004-12-13 21:40:53 +0000 |
commit | b69aa4916eb6e0194404bd762f738403ae6ffe86 (patch) | |
tree | 5447234a46794b592a897846931d0e680d705783 /cpp/src/IcePatch2/Calc.cpp | |
parent | fixes to case-insensitive stuff (diff) | |
download | ice-b69aa4916eb6e0194404bd762f738403ae6ffe86.tar.bz2 ice-b69aa4916eb6e0194404bd762f738403ae6ffe86.tar.xz ice-b69aa4916eb6e0194404bd762f738403ae6ffe86.zip |
VC++ 6.0 fix
Diffstat (limited to 'cpp/src/IcePatch2/Calc.cpp')
-rw-r--r-- | cpp/src/IcePatch2/Calc.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/IcePatch2/Calc.cpp b/cpp/src/IcePatch2/Calc.cpp index dfc7ac9637d..10dc84ef1d2 100644 --- a/cpp/src/IcePatch2/Calc.cpp +++ b/cpp/src/IcePatch2/Calc.cpp @@ -220,7 +220,7 @@ main(int argc, char* argv[]) string absDataDirWithSlash = absDataDir + '/'; - for(StringSeq::iterator p = fileSeq.begin(); p != fileSeq.end(); ++p) + for(p = fileSeq.begin(); p != fileSeq.end(); ++p) { if(p->compare(0, absDataDirWithSlash.size(), absDataDirWithSlash) != 0) { @@ -244,7 +244,7 @@ main(int argc, char* argv[]) { loadFileInfoSeq(absDataDir, infoSeq); - for(StringSeq::const_iterator p = fileSeq.begin(); p != fileSeq.end(); ++p) + for(p = fileSeq.begin(); p != fileSeq.end(); ++p) { FileInfoSeq partialInfoSeq; |