summaryrefslogtreecommitdiff
path: root/ACE/ace/Managed_Object.inl
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/ace/Managed_Object.inl')
-rw-r--r--ACE/ace/Managed_Object.inl4
1 files changed, 2 insertions, 2 deletions
diff --git a/ACE/ace/Managed_Object.inl b/ACE/ace/Managed_Object.inl
index 4747e8faa2b..c3b3acae0a1 100644
--- a/ACE/ace/Managed_Object.inl
+++ b/ACE/ace/Managed_Object.inl
@@ -3,7 +3,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL
template <class TYPE>
ACE_INLINE
-ACE_Cleanup_Adapter<TYPE>::ACE_Cleanup_Adapter (void)
+ACE_Cleanup_Adapter<TYPE>::ACE_Cleanup_Adapter ()
// Note: don't explicitly initialize "object_", because TYPE may not
// have a default constructor. Let the compiler figure it out . . .
{
@@ -12,7 +12,7 @@ ACE_Cleanup_Adapter<TYPE>::ACE_Cleanup_Adapter (void)
template <class TYPE>
ACE_INLINE
TYPE &
-ACE_Cleanup_Adapter<TYPE>::object (void)
+ACE_Cleanup_Adapter<TYPE>::object ()
{
return this->object_;
}