summaryrefslogtreecommitdiff
path: root/ace/Auto_Ptr.h
diff options
context:
space:
mode:
authorbrunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-06-23 13:08:08 +0000
committerbrunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-06-23 13:08:08 +0000
commit26e5b932f81ac40f626fed309097a9a6d22f44ea (patch)
tree86d0ecac818abee16da7178b79ae8837d140e616 /ace/Auto_Ptr.h
parent762321beef97311c24ce37a4775a061d2a3c0725 (diff)
downloadATCD-26e5b932f81ac40f626fed309097a9a6d22f44ea.tar.gz
Changed inheritance of auto_basic_array_ptr in auto_array_ptr to include
the template parameter X
Diffstat (limited to 'ace/Auto_Ptr.h')
-rw-r--r--ace/Auto_Ptr.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ace/Auto_Ptr.h b/ace/Auto_Ptr.h
index e60eca399c4..57025d5a9c9 100644
--- a/ace/Auto_Ptr.h
+++ b/ace/Auto_Ptr.h
@@ -100,7 +100,7 @@ private:
};
template<class X>
-class auto_array_ptr : public auto_basic_array_ptr
+class auto_array_ptr : public auto_basic_array_ptr<X>
// = TITLE
// Implements an extension to the draft C++ standard auto_ptr
// abstraction.