summaryrefslogtreecommitdiff
path: root/ace/Refcounted_Auto_Ptr.h
diff options
context:
space:
mode:
Diffstat (limited to 'ace/Refcounted_Auto_Ptr.h')
-rw-r--r--ace/Refcounted_Auto_Ptr.h10
1 files changed, 1 insertions, 9 deletions
diff --git a/ace/Refcounted_Auto_Ptr.h b/ace/Refcounted_Auto_Ptr.h
index 0e95f360f1e..5a9cdaca991 100644
--- a/ace/Refcounted_Auto_Ptr.h
+++ b/ace/Refcounted_Auto_Ptr.h
@@ -52,7 +52,7 @@ public:
ACE_Refcounted_Auto_Ptr (const ACE_Refcounted_Auto_Ptr<X, ACE_LOCK> &r);
/// Destructor.
- virtual ~ACE_Refcounted_Auto_Ptr (void);
+ ~ACE_Refcounted_Auto_Ptr (void);
/// Assignment operator that binds <this> and <r> to the same
/// <ACE_Refcounted_Auto_Ptr_Rep>. An <ACE_Refcounted_Auto_Ptr_Rep>
@@ -86,11 +86,6 @@ public:
/// Get the pointer value.
X *get (void);
- // = Utility method.
-
- /// Allows us to check for NULL on all ACE_Refcounted_Auto_Ptr objects.
- int null (void) const;
-
/// Declare the dynamic allocation hooks.
ACE_ALLOC_HOOK_DECLARE;
@@ -168,9 +163,6 @@ private:
ACE_LOCK lock_;
private:
- /// Allows us to check for NULL on all ACE_Refcounted_Auto_Ptr objects.
- int null (void) const;
-
// = Constructor and destructor private.
ACE_Refcounted_Auto_Ptr_Rep (X *p = 0);
~ACE_Refcounted_Auto_Ptr_Rep (void);