summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkitty <kitty@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-06-22 18:11:52 +0000
committerkitty <kitty@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-06-22 18:11:52 +0000
commita84ca451011cc44f507492b87c7f175191996b1a (patch)
treeee584fe1903868b4cb1d97e616d4fb50d2b12284
parent31504d488aa61f9ee1fcbff056095341e3ab4fca (diff)
downloadATCD-a84ca451011cc44f507492b87c7f175191996b1a.tar.gz
ChangeLogTag: Fri Jun 22 13:10:13 2001 Krishnakumar B
<kitty@cs.wustl.edu>
-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.