summaryrefslogtreecommitdiff
path: root/cpp/src/Glacier/Blobject.cpp
diff options
context:
space:
mode:
authorMichi Henning <michi@zeroc.com>2002-08-12 02:18:24 +0000
committerMichi Henning <michi@zeroc.com>2002-08-12 02:18:24 +0000
commit0b1443640cd95bc0c22db88ab00f7948e955bcfb (patch)
tree2ad713c4e6dd0b49f4a092f8615f99b688854269 /cpp/src/Glacier/Blobject.cpp
parentFixed a bug where we would move the buffer iterator beyond the buffer end. (diff)
downloadice-0b1443640cd95bc0c22db88ab00f7948e955bcfb.tar.bz2
ice-0b1443640cd95bc0c22db88ab00f7948e955bcfb.tar.xz
ice-0b1443640cd95bc0c22db88ab00f7948e955bcfb.zip
Changed nonmutating from metadata do keyword.
Diffstat (limited to 'cpp/src/Glacier/Blobject.cpp')
-rw-r--r--cpp/src/Glacier/Blobject.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/src/Glacier/Blobject.cpp b/cpp/src/Glacier/Blobject.cpp
index 5ee9a56a7e4..b584f5c4018 100644
--- a/cpp/src/Glacier/Blobject.cpp
+++ b/cpp/src/Glacier/Blobject.cpp
@@ -74,16 +74,16 @@ Glacier::Blobject::invoke(ObjectPrx& proxy, const vector<Byte>& inParams, vector
out << "routing to:\n"
<< "proxy = " << _communicator->proxyToString(proxy) << '\n'
<< "operation = " << current.operation << '\n'
- << "nonmutating = " << (current.nonmutating ? "true" : "false");
+ << "nonmutating = " << (current.isNonmutating ? "true" : "false");
}
if(_forwardContext)
{
- return proxy->ice_invoke(current.operation, current.nonmutating, inParams, outParams, current.ctx);
+ return proxy->ice_invoke(current.operation, current.isNonmutating, inParams, outParams, current.ctx);
}
else
{
- return proxy->ice_invoke(current.operation, current.nonmutating, inParams, outParams);
+ return proxy->ice_invoke(current.operation, current.isNonmutating, inParams, outParams);
}
}
}