diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-12-06 14:32:26 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-12-06 14:32:26 +0000 |
commit | b1092c84757d86298418bb0973aac1fb2574a885 (patch) | |
tree | 50d442636937d9fe8ab2bcf9d1da32138f7a40d9 /ace/Trace.cpp | |
parent | 79bd5b7e15904491e75c4cfa64256b5aff6fe612 (diff) | |
download | ATCD-b1092c84757d86298418bb0973aac1fb2574a885.tar.gz |
use ACE_NLOGGING instead of ACE_NDEBUG
Diffstat (limited to 'ace/Trace.cpp')
-rw-r--r-- | ace/Trace.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ace/Trace.cpp b/ace/Trace.cpp index 16f8c9af79c..8740dbd7c63 100644 --- a/ace/Trace.cpp +++ b/ace/Trace.cpp @@ -84,10 +84,10 @@ ACE_Trace::ACE_Trace (const ASYS_TCHAR *n, int line, const ASYS_TCHAR *file) { -#if defined (ACE_NDEBUG) +#if defined (ACE_NLOGGING) ACE_UNUSED_ARG (line); ACE_UNUSED_ARG (file); -#endif /* ACE_NDEBUG */ +#endif /* ACE_NLOGGING */ this->name_ = n; |