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
commit2b22dff8535d0ef1e09d7db6b8ea7f5dc5c25225 (patch)
tree86d0ecac818abee16da7178b79ae8837d140e616 /ace/Auto_Ptr.h
parent4a71959806dbc924bc95cf01f5579a9ff811dd8b (diff)
downloadATCD-2b22dff8535d0ef1e09d7db6b8ea7f5dc5c25225.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.