diff options
author | Michi Henning <michi@zeroc.com> | 2002-08-12 02:18:24 +0000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2002-08-12 02:18:24 +0000 |
commit | 0b1443640cd95bc0c22db88ab00f7948e955bcfb (patch) | |
tree | 2ad713c4e6dd0b49f4a092f8615f99b688854269 /cpp/src/Ice/Incoming.cpp | |
parent | Fixed a bug where we would move the buffer iterator beyond the buffer end. (diff) | |
download | ice-0b1443640cd95bc0c22db88ab00f7948e955bcfb.tar.bz2 ice-0b1443640cd95bc0c22db88ab00f7948e955bcfb.tar.xz ice-0b1443640cd95bc0c22db88ab00f7948e955bcfb.zip |
Changed nonmutating from metadata do keyword.
Diffstat (limited to 'cpp/src/Ice/Incoming.cpp')
-rw-r--r-- | cpp/src/Ice/Incoming.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/Ice/Incoming.cpp b/cpp/src/Ice/Incoming.cpp index fdd68423339..d077da7bac2 100644 --- a/cpp/src/Ice/Incoming.cpp +++ b/cpp/src/Ice/Incoming.cpp @@ -32,7 +32,7 @@ IceInternal::Incoming::invoke(bool response) current.id.__read(&_is); _is.read(current.facet); _is.read(current.operation); - _is.read(current.nonmutating); + _is.read(current.isNonmutating); Int sz; _is.readSize(sz); while(sz--) |