summaryrefslogtreecommitdiff
path: root/ace/Auto_Ptr.i
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.i
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.i')
-rw-r--r--ace/Auto_Ptr.i3
1 files changed, 2 insertions, 1 deletions
diff --git a/ace/Auto_Ptr.i b/ace/Auto_Ptr.i
index 3887274bcf8..2d333dd3d41 100644
--- a/ace/Auto_Ptr.i
+++ b/ace/Auto_Ptr.i
@@ -3,7 +3,8 @@
// Auto_Ptr.i
-#if !defined (ACE_HAS_STANDARD_CPP_LIBRARY)
+#if !defined (ACE_HAS_STANDARD_CPP_LIBRARY) || \
+ (ACE_HAS_STANDARD_CPP_LIBRARY == 0)
template<class X> ACE_INLINE void
ACE_Auto_Basic_Ptr<X>::operator= (ACE_Auto_Basic_Ptr<X> &rhs)