summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Notify/Refcountable.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/Notify/Refcountable.h')
-rw-r--r--TAO/orbsvcs/orbsvcs/Notify/Refcountable.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Notify/Refcountable.h b/TAO/orbsvcs/orbsvcs/Notify/Refcountable.h
index b45d3623d15..f3c96c621d8 100644
--- a/TAO/orbsvcs/orbsvcs/Notify/Refcountable.h
+++ b/TAO/orbsvcs/orbsvcs/Notify/Refcountable.h
@@ -58,7 +58,7 @@ TAO_BEGIN_VERSIONED_NAMESPACE_DECL
class TAO_Notify_Serv_Export TAO_Notify_Refcountable
{
public:
- typedef TAO_Notify_Refcountable_Guard_T< TAO_Notify_Refcountable > Ptr;
+ typedef TAO_Notify_Refcountable_Guard_T<TAO_Notify_Refcountable> Ptr;
/// Constructor
TAO_Notify_Refcountable (void);
@@ -67,12 +67,12 @@ public:
/// public for stack allocated instances
virtual ~TAO_Notify_Refcountable ();
- /// This method sigantures deliberately match the RefCounting methods required for ESF Proxy
+ /// This method signatures deliberately match the RefCounting methods required for ESF Proxy
/// Public for bridge implementations and various guard classes
CORBA::ULong _incr_refcnt (void);
CORBA::ULong _decr_refcnt (void);
-#if ( TAO_NOTIFY_REFCOUNT_DIAGNOSTICS != 0 )
+#if (TAO_NOTIFY_REFCOUNT_DIAGNOSTICS != 0)
static void diagnostic_dump( const char* title = 0 );
#endif
@@ -84,7 +84,7 @@ private:
/// boundary conditions such as too many _decr_refcnt() calls.
ACE_Atomic_Op<TAO_SYNCH_MUTEX, CORBA::Long> refcount_;
-#if ( TAO_NOTIFY_REFCOUNT_DIAGNOSTICS != 0 )
+#if (TAO_NOTIFY_REFCOUNT_DIAGNOSTICS != 0)
friend class TAO_Notify_Tracker;
int ref_id_;
#endif