diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2014-07-21 09:42:01 -0230 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2014-07-21 09:42:01 -0230 |
commit | b30759dfccb7f844d3957bc09d68d0077a334e6a (patch) | |
tree | 7c3f9f8bccc3f674aedd70014a1925755937d5d9 /cpp/src/Ice/StreamI.cpp | |
parent | Fixed build failure on Windows 64bits (diff) | |
download | ice-b30759dfccb7f844d3957bc09d68d0077a334e6a.tar.bz2 ice-b30759dfccb7f844d3957bc09d68d0077a334e6a.tar.xz ice-b30759dfccb7f844d3957bc09d68d0077a334e6a.zip |
ICE-5481 use size_type for Stream startSize() return type
Diffstat (limited to 'cpp/src/Ice/StreamI.cpp')
-rw-r--r-- | cpp/src/Ice/StreamI.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/Ice/StreamI.cpp b/cpp/src/Ice/StreamI.cpp index eb3ae4f13ae..f889f71b8be 100644 --- a/cpp/src/Ice/StreamI.cpp +++ b/cpp/src/Ice/StreamI.cpp @@ -729,14 +729,14 @@ OutputStreamI::rewrite(Int sz, size_type p) _os->rewrite(sz, p); } -int +OutputStream::size_type OutputStreamI::startSize() { return _os->startSize(); } void -OutputStreamI::endSize(int pos) +OutputStreamI::endSize(OutputStream::size_type pos) { _os->endSize(pos); } |