diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-06-23 14:38:38 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-06-23 14:38:38 +0000 |
commit | 893c711f879050a3227c4aeea23dbe181b563c1d (patch) | |
tree | 0aed14bdb03cd11c5259cfa6fa7a162a9cb94728 /ace/Auto_Ptr.i | |
parent | 00a0d7e41ab077f6e108b2a5ced7923f3c4d57f6 (diff) | |
download | ATCD-893c711f879050a3227c4aeea23dbe181b563c1d.tar.gz |
made the auto_array_ptr operator-> const
Diffstat (limited to 'ace/Auto_Ptr.i')
-rw-r--r-- | ace/Auto_Ptr.i | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ace/Auto_Ptr.i b/ace/Auto_Ptr.i index 5648b5b3dc7..1ef5d6c5af3 100644 --- a/ace/Auto_Ptr.i +++ b/ace/Auto_Ptr.i @@ -159,7 +159,7 @@ auto_array_ptr<X>::auto_array_ptr (X *p) } template<class X> ACE_INLINE X * -auto_array_ptr<X>::operator->() +auto_array_ptr<X>::operator->() const { return p_; } |