summaryrefslogtreecommitdiff
path: root/ace/Auto_Ptr.cpp
diff options
context:
space:
mode:
authorbrunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-08-16 20:07:34 +0000
committerbrunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-08-16 20:07:34 +0000
commitd943d8e6fcb5394b3ee2bbfbfe6bb3181d5e2bc8 (patch)
tree1a787e61fc2a89d92fc05db558370ef927e7665e /ace/Auto_Ptr.cpp
parentf247f1180eca5a9df28ab29bce2a43a6cbd43a38 (diff)
downloadATCD-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.cpp3
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)