diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-06-29 15:06:01 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-06-29 15:06:01 +0000 |
commit | 2607bf7571192002c4531dbc62ec3382bba7b30d (patch) | |
tree | 3b9af7e2535e29c91761624621e4ddd2760a9a27 | |
parent | d6031d4e0a0ed06deb8939b5b8d09f055ee713a9 (diff) | |
download | ATCD-2607bf7571192002c4531dbc62ec3382bba7b30d.tar.gz |
(ipfx): comment out unused variable "need"
-rw-r--r-- | ace/IOStream_T.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ace/IOStream_T.h b/ace/IOStream_T.h index bbbd1eca755..8943f8e0225 100644 --- a/ace/IOStream_T.h +++ b/ace/IOStream_T.h @@ -130,7 +130,7 @@ public: GETPUT_FUNC_SET (ACE_IOStream_T<STREAM>) #if defined (ACE_LACKS_IOSTREAM_FX) - virtual int ipfx (int need = 0) { return good(); } + virtual int ipfx (int /* need */ = 0) { return good(); } virtual int ipfx0(void) { return good(); } // Optimized ipfx(0) virtual int ipfx1(void) { return good(); } // Optimized ipfx(1) virtual void isfx (void) { return; } |