diff options
author | Marc Laukien <marc@zeroc.com> | 2002-07-08 21:04:12 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2002-07-08 21:04:12 +0000 |
commit | 76621154ea8e709ce8fa863d4a0f2edcd2168e1e (patch) | |
tree | c21638a15ae06759a56355a54abf3e7956987a66 /cpp/src/IceUtil/InputUtil.cpp | |
parent | Catch NumberFormatException when parsing the Ice.RetryIntevals property. (diff) | |
download | ice-76621154ea8e709ce8fa863d4a0f2edcd2168e1e.tar.bz2 ice-76621154ea8e709ce8fa863d4a0f2edcd2168e1e.tar.xz ice-76621154ea8e709ce8fa863d4a0f2edcd2168e1e.zip |
fixes
Diffstat (limited to 'cpp/src/IceUtil/InputUtil.cpp')
-rw-r--r-- | cpp/src/IceUtil/InputUtil.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/IceUtil/InputUtil.cpp b/cpp/src/IceUtil/InputUtil.cpp index b8652fff152..193aff767af 100644 --- a/cpp/src/IceUtil/InputUtil.cpp +++ b/cpp/src/IceUtil/InputUtil.cpp @@ -94,7 +94,7 @@ strToInt64(const char* s, char** endptr, int base) // // Table to convert ASCII digits/letters into their value (100 for unused slots) // -static const char digitVal[] = + static const char digitVal[] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, // '0' - '9' 100, 100, 100, 100, 100, 100, 100, // punctuation |