summaryrefslogtreecommitdiff
path: root/cpp/include/Ice/InputStream.h
diff options
context:
space:
mode:
authorBernard Normier <bernard@zeroc.com>2016-11-05 10:51:56 -0400
committerBernard Normier <bernard@zeroc.com>2016-11-05 10:51:56 -0400
commita9207c4a7e8190cb64286afc1b373f16010d0feb (patch)
treeb6815a6debc9b9589145cc12f192b6dd83b3f49e /cpp/include/Ice/InputStream.h
parentRevert "Reverted previous double-underscore changes in IceUtil classes" (diff)
downloadice-a9207c4a7e8190cb64286afc1b373f16010d0feb.tar.bz2
ice-a9207c4a7e8190cb64286afc1b373f16010d0feb.tar.xz
ice-a9207c4a7e8190cb64286afc1b373f16010d0feb.zip
Revert "Replaced double and triple underscores in C++ by ice-prefixed names"
This reverts commit 91fa99c34d1211d426b24bf68001fc27a87b3f00.
Diffstat (limited to 'cpp/include/Ice/InputStream.h')
-rw-r--r--cpp/include/Ice/InputStream.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/include/Ice/InputStream.h b/cpp/include/Ice/InputStream.h
index c570d7cbe77..81d5be4c950 100644
--- a/cpp/include/Ice/InputStream.h
+++ b/cpp/include/Ice/InputStream.h
@@ -41,7 +41,7 @@ patchHandle(void* addr, const ValuePtr& v)
}
#else
IceInternal::Handle<T>* p = static_cast<IceInternal::Handle<T>*>(addr);
- icePatch(*p, v); // Generated icePatch method, necessary for forward declarations.
+ __patch(*p, v); // Generated __patch method, necessary for forward declarations.
#endif
}
@@ -383,7 +383,7 @@ public:
#ifdef ICE_CPP11_MAPPING
v.emplace();
#else
- v.iceSetIsSet();
+ v.__setIsSet();
#endif
StreamOptionalHelper<T,
StreamableTraits<T>::helper,
@@ -594,14 +594,14 @@ public:
else
{
v = ::IceInternal::createProxy<T>();
- v->iceCopyFrom(proxy);
+ v->__copyFrom(proxy);
}
}
#else
void read(ObjectPrx&);
template<typename T> void read(IceInternal::ProxyHandle<T>& v)
{
- iceRead(this, v); // Generated iceRead method, necessary for forward declarations.
+ __read(this, v); // Generated __read method, necessary for forward declarations.
}
#endif