summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-05-21 21:44:29 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-05-21 21:44:29 +0000
commitd2e8ca9b5c74bd04db286e9a45c1b804e20141e5 (patch)
tree9216ae3c8323e96807dd184dd0db3fa3c4b89d04
parente88a27a1ea80034fa91c2c622bf9df54e2ccfe1e (diff)
downloadATCD-d2e8ca9b5c74bd04db286e9a45c1b804e20141e5.tar.gz
removed "const" from u_char * and void * PUT_PROTs, so that tests will build on Irix platforms
-rw-r--r--ace/IOStream.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/ace/IOStream.h b/ace/IOStream.h
index 7603553178d..454f803e829 100644
--- a/ace/IOStream.h
+++ b/ace/IOStream.h
@@ -442,8 +442,8 @@ typedef ostream& (*__omanip_)(ostream&);
PUT_PROT(MT,char,CODE) \
PUT_PROT(MT,u_char,CODE) \
PUT_PROT(MT,const char *,CODE) \
- PUT_PROT(MT,const u_char *,CODE) \
- PUT_PROT(MT,const void *,CODE) \
+ PUT_PROT(MT,u_char *,CODE) \
+ PUT_PROT(MT,void *,CODE) \
inline virtual MT& operator<<(__omanip_ func) CODE2 \
inline virtual MT& operator<<(__manip_ func) CODE2
@@ -545,9 +545,7 @@ public:
#endif /* ACE_HAS_STRING_CLASS */
// = Using the macros to provide get/set operators.
-#if !defined (ACE_LACKS_IOSTREAM_SETGET)
GETPUT_FUNC_SET (ACE_IOStream<STREAM>)
-#endif /* ACE_LACKS_IOSTREAM_SETSET */
#if defined (ACE_LACKS_IOSTREAM_FX)
virtual int ipfx (int need = 0) { return good(); }