diff options
author | brunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-08-16 20:07:34 +0000 |
---|---|---|
committer | brunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-08-16 20:07:34 +0000 |
commit | d943d8e6fcb5394b3ee2bbfbfe6bb3181d5e2bc8 (patch) | |
tree | 1a787e61fc2a89d92fc05db558370ef927e7665e /ace/Auto_Ptr.cpp | |
parent | f247f1180eca5a9df28ab29bce2a43a6cbd43a38 (diff) | |
download | ATCD-d943d8e6fcb5394b3ee2bbfbfe6bb3181d5e2bc8.tar.gz |
Changed the checks for ACE_HAS_STANDARD_CPP_LIBRARY to also check to see
if it is defined to 0 (which means the same as it not being defined).
Diffstat (limited to 'ace/Auto_Ptr.cpp')
-rw-r--r-- | ace/Auto_Ptr.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ace/Auto_Ptr.cpp b/ace/Auto_Ptr.cpp index 5e73b9ac8c9..e6f5ef69a03 100644 --- a/ace/Auto_Ptr.cpp +++ b/ace/Auto_Ptr.cpp @@ -11,7 +11,8 @@ #include "ace/Auto_Ptr.i" #endif /* __ACE_INLINE__ */ -#if !defined (ACE_HAS_STANDARD_CPP_LIBRARY) +#if !defined (ACE_HAS_STANDARD_CPP_LIBRARY) || \ + (ACE_HAS_STANDARD_CPP_LIBRARY == 0) ACE_ALLOC_HOOK_DEFINE(ACE_Auto_Basic_Ptr) |