summaryrefslogtreecommitdiff
path: root/ace/Based_Pointer_T.inl
diff options
context:
space:
mode:
Diffstat (limited to 'ace/Based_Pointer_T.inl')
-rw-r--r--ace/Based_Pointer_T.inl7
1 files changed, 6 insertions, 1 deletions
diff --git a/ace/Based_Pointer_T.inl b/ace/Based_Pointer_T.inl
index b45e14073e3..4d6b86e0c41 100644
--- a/ace/Based_Pointer_T.inl
+++ b/ace/Based_Pointer_T.inl
@@ -1,9 +1,12 @@
-/* -*- C++ -*- */
+// -*- C++ -*-
+//
// $Id$
#define ACE_COMPUTE_BASED_POINTER(P) (((char *) (P) - (P)->base_offset_) + (P)->target_)
#include "ace/Global_Macros.h"
+ACE_BEGIN_VERSIONED_NAMESPACE_DECL
+
template <class CONCRETE> ACE_INLINE CONCRETE *
ACE_Based_Pointer<CONCRETE>::operator->(void)
{
@@ -132,3 +135,5 @@ ACE_Based_Pointer<CONCRETE>::operator= (const ACE_Based_Pointer<CONCRETE> &rhs)
ACE_TRACE ("ACE_Based_Pointer<CONCRETE>::operator=");
*this = rhs.addr ();
}
+
+ACE_END_VERSIONED_NAMESPACE_DECL