diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-12-27 22:24:56 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-12-27 22:24:56 +0000 |
commit | 2b4bf86bd1d466e3c08f128eab9acd92269361b3 (patch) | |
tree | 1f2d48556fdcd1bea2ea84218540cd40eee31831 | |
parent | f9de97984fddd8d5cb85d5a15729d661d2240a10 (diff) | |
download | ATCD-2b4bf86bd1d466e3c08f128eab9acd92269361b3.tar.gz |
ChangeLogTag: Mon Dec 27 16:24:09 1999 David L. Levine <levine@cs.wustl.edu>
-rw-r--r-- | ChangeLog-99b | 5 | ||||
-rw-r--r-- | ace/IOStream.h | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog-99b b/ChangeLog-99b index bee319ece6f..7f901379b53 100644 --- a/ChangeLog-99b +++ b/ChangeLog-99b @@ -1,3 +1,8 @@ +Mon Dec 27 16:24:09 1999 David L. Levine <levine@cs.wustl.edu> + + * ace/IOStream.h (setb): commented out declaration of + unused arg a. + Mon Dec 27 15:51:39 1999 David L. Levine <levine@cs.wustl.edu> * tests/test_config.h (set_output): with __USE_STD_OSTREAM diff --git a/ace/IOStream.h b/ace/IOStream.h index 6bdd07b72a7..b1dbd58c543 100644 --- a/ace/IOStream.h +++ b/ace/IOStream.h @@ -312,7 +312,7 @@ protected: return streambuf_size_; } - void setb (char* b, char* eb, int a=0) + void setb (char* b, char* eb, int /* a */=0) { setbuf (b, (eb - b)); } |