From 6447488b9fd3285653876c75ac98b6dfbd67c9fb Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Thu, 8 Mar 2001 21:26:46 +0000 Subject: [PATCH] dont use implcit this pointer --- src/ca/netSubscription_IL.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ca/netSubscription_IL.h b/src/ca/netSubscription_IL.h index 4b9f76ff2..00e9d136f 100644 --- a/src/ca/netSubscription_IL.h +++ b/src/ca/netSubscription_IL.h @@ -32,7 +32,7 @@ inline void netSubscription::operator delete ( void *pCadaver, size_t size ) inline unsigned long netSubscription::getCount () const { - unsigned long nativeCount = chan.nativeElementCount (); + unsigned long nativeCount = this->chan.nativeElementCount (); if ( this->count == 0u || this->count > nativeCount ) { return nativeCount; }