summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorbrunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-05-17 23:31:05 +0000
committerbrunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-05-17 23:31:05 +0000
commit57b8e59754c27ee08edec4b21bf3e8ce470f4a3d (patch)
treec7305cd8cce0df09ce11e56fbcf10037e80f0b44 /ChangeLog
parent0d47e25dfb85867ff42ab0c17df97f7092d9cdb7 (diff)
downloadATCD-57b8e59754c27ee08edec4b21bf3e8ce470f4a3d.tar.gz
ChangeLogTag:Wed May 17 16:20:30 2000 Darrell Brunsch <brunsch@uci.edu>
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog27
1 files changed, 27 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index bd982a558b2..1f9270d681d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,30 @@
+Wed May 17 16:20:30 2000 Darrell Brunsch <brunsch@uci.edu>
+
+ * ace/Future.cpp:
+ * ace/Future.h:
+ * ace/Future_Set.cpp:
+ * ace/Future_Set.h:
+ * ace/LOCK_SOCK_Acceptor.cpp:
+ * ace/config-pharlap.h:
+
+ While searching for the cause of a warning being undisabled,
+ I noticed there were several places where we were using
+ #include /**/ "ace/some-header.h". The #include /**/ is only
+ for system headers, so it doesn't need to be used with ACE
+ headers.
+
+ * ace/streams.h:
+
+ If ACE_HAS_STANDARD_CPP_LIBRARY is defined, then we include
+ the .h-less versions of the header files. This is all fine
+ and good, except that these headers in MSVC will disable some
+ warnings with #pragma warning, but then set them back to
+ default at the end. So if we disabled a warning in the config
+ file, it would get reenabled because of these headers.
+
+ So I added a #pragma warning(push/pop) pair around the includes
+ in this file to localize the warning settings.
+
Wed May 17 14:32:50 2000 Carlos O'Ryan <coryan@uci.edu>
* tests/CDR_Array_Test.cpp: