diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2008-03-25 11:06:52 -0400 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2008-03-25 11:06:52 -0400 |
commit | afc4d4a1f5c92b934ee665f48d125a7aee5c6a6a (patch) | |
tree | a2023662b7f3af96d80b20a168156795bba9c7c7 /cpp/src/Ice/Buffer.cpp | |
parent | Fixed bug #668 (diff) | |
download | ice-afc4d4a1f5c92b934ee665f48d125a7aee5c6a6a.tar.bz2 ice-afc4d4a1f5c92b934ee665f48d125a7aee5c6a6a.tar.xz ice-afc4d4a1f5c92b934ee665f48d125a7aee5c6a6a.zip |
Bug 2889 - fix compiler warnings on Sun
Diffstat (limited to 'cpp/src/Ice/Buffer.cpp')
-rw-r--r-- | cpp/src/Ice/Buffer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/Ice/Buffer.cpp b/cpp/src/Ice/Buffer.cpp index 97f459b2106..6604ccd2775 100644 --- a/cpp/src/Ice/Buffer.cpp +++ b/cpp/src/Ice/Buffer.cpp @@ -15,7 +15,7 @@ using namespace Ice; using namespace IceInternal; void -IceInternal::Buffer::swap(Buffer& other) +IceInternal::Buffer::swapBuffer(Buffer& other) { b.swap(other.b); std::swap(i, other.i); |