summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog7
-rw-r--r--ChangeLogs/ChangeLog-02a7
-rw-r--r--ChangeLogs/ChangeLog-03a7
-rw-r--r--examples/Log_Msg/test_ostream.cpp2
4 files changed, 22 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 3d15d042034..a0de7fc7a39 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+Fri Jun 22 13:10:13 2001 Krishnakumar B <kitty@cs.wustl.edu>
+
+ * examples/Log_Msg/test_ostream.cpp (main):
+
+ Reverted the change as it seems to break VC++. Will fix it
+ shortly.
+
Fri Jun 22 07:33:45 2001 Douglas C. Schmidt <schmidt@tango.doc.wustl.edu>
* ace/OS_TLI.{h,inl}: Changed the signature of the t_open() and
diff --git a/ChangeLogs/ChangeLog-02a b/ChangeLogs/ChangeLog-02a
index 3d15d042034..a0de7fc7a39 100644
--- a/ChangeLogs/ChangeLog-02a
+++ b/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,10 @@
+Fri Jun 22 13:10:13 2001 Krishnakumar B <kitty@cs.wustl.edu>
+
+ * examples/Log_Msg/test_ostream.cpp (main):
+
+ Reverted the change as it seems to break VC++. Will fix it
+ shortly.
+
Fri Jun 22 07:33:45 2001 Douglas C. Schmidt <schmidt@tango.doc.wustl.edu>
* ace/OS_TLI.{h,inl}: Changed the signature of the t_open() and
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index 3d15d042034..a0de7fc7a39 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,3 +1,10 @@
+Fri Jun 22 13:10:13 2001 Krishnakumar B <kitty@cs.wustl.edu>
+
+ * examples/Log_Msg/test_ostream.cpp (main):
+
+ Reverted the change as it seems to break VC++. Will fix it
+ shortly.
+
Fri Jun 22 07:33:45 2001 Douglas C. Schmidt <schmidt@tango.doc.wustl.edu>
* ace/OS_TLI.{h,inl}: Changed the signature of the t_open() and
diff --git a/examples/Log_Msg/test_ostream.cpp b/examples/Log_Msg/test_ostream.cpp
index 604366d4622..098e5de05a0 100644
--- a/examples/Log_Msg/test_ostream.cpp
+++ b/examples/Log_Msg/test_ostream.cpp
@@ -46,7 +46,7 @@ main (int, char *[])
#if !defined (ACE_LACKS_IOSTREAM_TOTALLY)
// Create a persistent store.
const char *filename = "output";
- ios::openmode flags = ios::out | ios::trunc;
+ int flags = ios::out | ios::trunc;
ofstream myostream (filename, flags);
// Check for errors.