summaryrefslogtreecommitdiff
path: root/ace/Trace.h
diff options
context:
space:
mode:
authornanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-03-05 07:48:33 +0000
committernanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-03-05 07:48:33 +0000
commit918b5e00b9014cd9f971ef67bbc995f7f02ae318 (patch)
tree2af623a86730adcc73cd4e6ee4aca681fc226017 /ace/Trace.h
parentebe7ee288e6a86e32757f4ff76625c415a52fcf3 (diff)
downloadATCD-918b5e00b9014cd9f971ef67bbc995f7f02ae318.tar.gz
CE UNICODE madness continue...
Diffstat (limited to 'ace/Trace.h')
-rw-r--r--ace/Trace.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/ace/Trace.h b/ace/Trace.h
index cb01b036819..8f6e8b27869 100644
--- a/ace/Trace.h
+++ b/ace/Trace.h
@@ -31,7 +31,8 @@ class ACE_Export ACE_Trace
public:
// = Initialization and termination methods.
- ACE_Trace (const char *n, int line = 0, const char *file = "");
+ ACE_Trace (const ASYS_TCHAR *n, int line = 0,
+ const ASYS_TCHAR *file = ASYS_TEXT (""));
// Perform the first part of the trace, which prints out the string
// N, the LINE, and the ACE_FILE as the function is entered.
@@ -60,7 +61,7 @@ private:
// maintained in thread-specific storage to ensure correctness in
// multiple threads of control.
- const char *name_;
+ const ASYS_TCHAR *name_;
// Name of the method we are in.
static int nesting_indent_;