summaryrefslogtreecommitdiff
path: root/ace/CDR_Stream.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ace/CDR_Stream.cpp')
-rw-r--r--ace/CDR_Stream.cpp37
1 files changed, 2 insertions, 35 deletions
diff --git a/ace/CDR_Stream.cpp b/ace/CDR_Stream.cpp
index 9220778588b..aa026c9b1bc 100644
--- a/ace/CDR_Stream.cpp
+++ b/ace/CDR_Stream.cpp
@@ -117,29 +117,6 @@ ACE_CDR::LongDouble::operator!= (const ACE_CDR::LongDouble &rhs) const
}
#endif /* NONNATIVE_LONGDOUBLE */
-#if defined(_UNICOS)
-// placeholders to get things compiling
-ACE_CDR::Float::Float()
-{
-}
-
-ACE_CDR::Float::Float(const float & init))
-{
-}
-
-float
-ACE_CDR::Float::operator= (const ACE_CDR::Float &rhs) const
-{
- return 0.0f;
-}
-
-int
-ACE_CDR::Float::operator!= (const ACE_CDR::Float &rhs) const
-{
- return 0;
-}
-#endif /* _UNICOS */
-
// ****************************************************************
ACE_OutputCDR::ACE_OutputCDR (size_t size,
@@ -736,9 +713,7 @@ ACE_InputCDR::read_string (char *&x)
this->read_ulong (len);
if (len > 0)
{
- ACE_NEW_RETURN (x,
- ACE_CDR::Char[len],
- 0);
+ ACE_NEW_RETURN (x, ACE_CDR::Char[len], 0);
if (this->read_char_array (x, len))
return 1;
delete [] x;
@@ -776,9 +751,7 @@ ACE_InputCDR::read_wstring (ACE_CDR::WChar*& x)
this->read_ulong (len);
if (this->good_bit())
{
- ACE_NEW_RETURN (x,
- ACE_CDR::WChar[len],
- 0);
+ ACE_NEW_RETURN (x, ACE_CDR::WChar[len], 0);
if (this->read_wchar_array (x, len))
return 1;
@@ -1049,9 +1022,3 @@ ACE_InputCDR::steal_contents (void)
return block;
}
-
-void
-ACE_InputCDR::reset_contents (void)
-{
- this->start_.data_block (this->start_.data_block ()->clone ());
-}