diff options
author | Bernard Normier <bernard@zeroc.com> | 2005-04-18 16:19:51 +0000 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2005-04-18 16:19:51 +0000 |
commit | 1281ffa519e90550715d77c7548d38205072a10e (patch) | |
tree | 5ac39a746740cdacde8138cf8d15dc90746eaa4d /cpp/src/Slice/PythonUtil.cpp | |
parent | Fix (diff) | |
download | ice-1281ffa519e90550715d77c7548d38205072a10e.tar.bz2 ice-1281ffa519e90550715d77c7548d38205072a10e.tar.xz ice-1281ffa519e90550715d77c7548d38205072a10e.zip |
Fixed bug #80: removed Int64Min / Int64Max
Diffstat (limited to 'cpp/src/Slice/PythonUtil.cpp')
-rw-r--r-- | cpp/src/Slice/PythonUtil.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cpp/src/Slice/PythonUtil.cpp b/cpp/src/Slice/PythonUtil.cpp index 87bc16b3eab..6f4beebf727 100644 --- a/cpp/src/Slice/PythonUtil.cpp +++ b/cpp/src/Slice/PythonUtil.cpp @@ -1235,8 +1235,7 @@ Slice::Python::CodeVisitor::visitConst(const ConstPtr& p) case Slice::Builtin::KindLong: { IceUtil::Int64 l; - string::size_type pos; - IceUtil::stringToInt64(value, l, pos); + IceUtil::stringToInt64(value, l); // // The platform's 'long' type may not be 64 bits, so we store 64-bit // values as a string. |