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/FileLocator.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/FileLocator.cpp')
-rw-r--r-- | cpp/src/IcePatch/FileLocator.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cpp/src/IcePatch/FileLocator.cpp b/cpp/src/IcePatch/FileLocator.cpp index 78d5a5bc0a7..fbf288e50a9 100644 --- a/cpp/src/IcePatch/FileLocator.cpp +++ b/cpp/src/IcePatch/FileLocator.cpp @@ -50,7 +50,8 @@ IcePatch::FileLocator::locate(const Current& current, LocalObjectPtr&) return 0; } - if(path.size() >= 2 && tolower(path[0]) >= 'a' && tolower(path[0]) <= 'z' && path[1] == ':') // Example: c:\blah + if(path.size() >= 2 && + ::tolower(path[0]) >= 'a' && ::tolower(path[0]) <= 'z' && path[1] == ':') // Example: c:\blah { return 0; } |