diff options
author | Marc Laukien <marc@zeroc.com> | 2002-09-28 19:59:40 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2002-09-28 19:59:40 +0000 |
commit | a46dbf9951edb25908ee2342d96c8948080f3b2d (patch) | |
tree | 69edeff1a51dc4350a12e8f26c81025b4f74167c /cpp/src/IcePatch/Client.cpp | |
parent | Removed slice task tagdir attribute from build.xml (diff) | |
download | ice-a46dbf9951edb25908ee2342d96c8948080f3b2d.tar.bz2 ice-a46dbf9951edb25908ee2342d96c8948080f3b2d.tar.xz ice-a46dbf9951edb25908ee2342d96c8948080f3b2d.zip |
minor changes for gcc 3.2
Diffstat (limited to 'cpp/src/IcePatch/Client.cpp')
-rw-r--r-- | cpp/src/IcePatch/Client.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/IcePatch/Client.cpp b/cpp/src/IcePatch/Client.cpp index 518ea1c0bd7..86e4d502580 100644 --- a/cpp/src/IcePatch/Client.cpp +++ b/cpp/src/IcePatch/Client.cpp @@ -216,7 +216,7 @@ IcePatch::Client::run(int argc, char* argv[]) { cout << "Do you want to proceed? (yes/no)" << endl; cin >> answer; - transform(answer.begin(), answer.end(), answer.begin(), tolower); + transform(answer.begin(), answer.end(), answer.begin(), ::tolower); if(answer == "no") { return EXIT_SUCCESS; |