summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/StreamI.cpp
diff options
context:
space:
mode:
authorBernard Normier <bernard@zeroc.com>2012-09-25 22:35:10 +0000
committerBernard Normier <bernard@zeroc.com>2012-09-25 22:35:10 +0000
commit4a55d7d891bad0b123ebdb7e253740f4d1b4b2eb (patch)
treef4a631d7a152edfb86a70a3841e2b136fbaf904f /cpp/src/Ice/StreamI.cpp
parentRuby port; Python & C++ fixes (diff)
downloadice-4a55d7d891bad0b123ebdb7e253740f4d1b4b2eb.tar.bz2
ice-4a55d7d891bad0b123ebdb7e253740f4d1b4b2eb.tar.xz
ice-4a55d7d891bad0b123ebdb7e253740f4d1b4b2eb.zip
Renamings (ICE-4868):
- StreamTrait is now StreamableTraits - StreamTraitType is now StreamHelperCategory - OptionalType is now OptionalFormat - Ice/StreamTraits.h is now Ice/StreamHelpers.h Updated C++, Python and Ruby Updated .depend and .depend.mak in C++, Python, Ruby and PHP
Diffstat (limited to 'cpp/src/Ice/StreamI.cpp')
-rw-r--r--cpp/src/Ice/StreamI.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/src/Ice/StreamI.cpp b/cpp/src/Ice/StreamI.cpp
index 55aa9b50fd9..f01e6f8e190 100644
--- a/cpp/src/Ice/StreamI.cpp
+++ b/cpp/src/Ice/StreamI.cpp
@@ -271,9 +271,9 @@ InputStreamI::read(pair<const Double*, const Double*>& p,
}
bool
-InputStreamI::readOptional(Int tag, OptionalType type)
+InputStreamI::readOptional(Int tag, OptionalFormat format)
{
- return _is->readOpt(tag, type);
+ return _is->readOpt(tag, format);
}
void
@@ -571,9 +571,9 @@ OutputStreamI::write(const Double* begin, const Double* end)
}
bool
-OutputStreamI::writeOptional(Int tag, OptionalType type)
+OutputStreamI::writeOptional(Int tag, OptionalFormat format)
{
- return _os->writeOpt(tag, type);
+ return _os->writeOpt(tag, format);
}
void