summaryrefslogtreecommitdiff
path: root/ACE/ace/IOStream_T.h
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2021-06-08 09:30:34 +0200
committerJohnny Willemsen <jwillemsen@remedy.nl>2021-06-08 09:30:34 +0200
commit6e9f7718c9e564e9a0ac1efbe34adfc3f74ed06c (patch)
treecb26bf0d1b1ba548782510d5b19ef70da8aa2ff8 /ACE/ace/IOStream_T.h
parentf5be2f529f7579ff4fbb0c842a2ba675ef9725b2 (diff)
downloadATCD-6e9f7718c9e564e9a0ac1efbe34adfc3f74ed06c.tar.gz
Each platform we support provides std::string as string class, define ACE_HAS_STRING_CLASS always and removed the checks for it
* ACE/ace/IOStream.h: * ACE/ace/IOStream_T.cpp: * ACE/ace/IOStream_T.h: * ACE/ace/config-aix-5.x.h: * ACE/ace/config-all.h: * ACE/ace/config-cygwin32.h: * ACE/ace/config-hpux-11.00.h: * ACE/ace/config-hurd.h: * ACE/ace/config-icc-common.h: * ACE/ace/config-kfreebsd.h: * ACE/ace/config-linux-common.h: * ACE/tests/IOStream_Test.cpp:
Diffstat (limited to 'ACE/ace/IOStream_T.h')
-rw-r--r--ACE/ace/IOStream_T.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/ACE/ace/IOStream_T.h b/ACE/ace/IOStream_T.h
index d834c525470..c10f452eb1e 100644
--- a/ACE/ace/IOStream_T.h
+++ b/ACE/ace/IOStream_T.h
@@ -34,10 +34,8 @@
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
-# if defined (ACE_HAS_STRING_CLASS)
template <class STREAM> STREAM & operator>> (STREAM &stream, ACE_Quoted_String &str);
template <class STREAM> STREAM & operator<< (STREAM &stream, ACE_Quoted_String &str);
-# endif /* defined (ACE_HAS_STRING_CLASS) */
template <class STREAM>
class ACE_Streambuf_T : public ACE_Streambuf
@@ -137,7 +135,6 @@ public:
*/
int eof () const;
-# if defined (ACE_HAS_STRING_CLASS)
/**
* A simple string operator. The base <iostream> has them for char*
* but that isn't always the best thing for a <String>. If we don't
@@ -148,7 +145,6 @@ public:
/// The converse of the <String::put> operator.
virtual ACE_IOStream<STREAM> &operator<< (ACE_IOStream_String &v);
-# endif /* ACE_HAS_STRING_CLASS */
// = Using the macros to provide get/set operators.
GETPUT_FUNC_SET (ACE_IOStream<STREAM>)