From 03a89c0f2e5002acd16c6e6ac4d97771198c0660 Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Wed, 8 Nov 2000 01:02:55 +0000 Subject: [PATCH] use nonambig this --- src/libCom/cxxTemplates/tsFreeList.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libCom/cxxTemplates/tsFreeList.h b/src/libCom/cxxTemplates/tsFreeList.h index e245c8399..635a9e548 100644 --- a/src/libCom/cxxTemplates/tsFreeList.h +++ b/src/libCom/cxxTemplates/tsFreeList.h @@ -119,7 +119,7 @@ inline void * tsFreeList < T, N, DEBUG_LEVEL >::allocate ( size_t size ) this->pFreeList = p->pNext; } else { - p = allocateFromNewChunk (); + p = this->allocateFromNewChunk (); } this->unlock (); @@ -137,7 +137,7 @@ tsFreeListItem < T, DEBUG_LEVEL > * tsFreeList < T, N, DEBUG_LEVEL >::allocateFr //} tsFreeListChunk < T, N, DEBUG_LEVEL > *pChunk = new ( tsFreeListChunk < T, N, DEBUG_LEVEL > ); - if ( ! pChunk) { + if ( ! pChunk ) { return 0; }