summaryrefslogtreecommitdiff
path: root/ace/Future.cpp
diff options
context:
space:
mode:
authornanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-03-12 22:28:40 +0000
committernanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-03-12 22:28:40 +0000
commitf7f7b07dcccaea361887e068223e366f60e670bc (patch)
tree4683b14230e715d8206d8c64afdebbebbfcbacc1 /ace/Future.cpp
parenta03612133f85ac33e239e617695edf46fa4f932b (diff)
downloadATCD-f7f7b07dcccaea361887e068223e366f60e670bc.tar.gz
Regular CE stuff.
Diffstat (limited to 'ace/Future.cpp')
-rw-r--r--ace/Future.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/ace/Future.cpp b/ace/Future.cpp
index 0b269abd850..740afbb415c 100644
--- a/ace/Future.cpp
+++ b/ace/Future.cpp
@@ -21,9 +21,9 @@ ACE_Future_Rep<T>::dump (void) const
(int) this->ref_count_));
ACE_DEBUG ((LM_INFO,"value_: \n"));
if (this->value_)
- ACE_DEBUG ((LM_DEBUG," (NON-NULL)\n"));
+ ACE_DEBUG ((LM_DEBUG, ASYS_TEXT (" (NON-NULL)\n")));
else
- ACE_DEBUG ((LM_DEBUG," (NULL)\n"));
+ ACE_DEBUG ((LM_DEBUG, ASYS_TEXT (" (NULL)\n")));
ACE_DEBUG ((LM_INFO,"value_ready_: \n"));
this->value_ready_.dump ();
@@ -196,7 +196,7 @@ template <class T>
ACE_Future<T>::ACE_Future (const T &r)
: future_rep_ (FUTURE_REP::create ())
{
- ACE_DEBUG ((LM_DEBUG," (%t) funny constructor\n"));
+ ACE_DEBUG ((LM_DEBUG, ASYS_TEXT (" (%t) funny constructor\n")));
this->future_rep_->set (r);
}