From a978682ed225026607b1de23ba20dfe36d44c5cd Mon Sep 17 00:00:00 2001 From: rdb Date: Wed, 22 May 2013 09:10:22 +0000 Subject: [PATCH] more compilation fixes for recent gcc --- panda/src/express/threadSafePointerTo.I | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/panda/src/express/threadSafePointerTo.I b/panda/src/express/threadSafePointerTo.I index be16972a43..b6270a91cf 100644 --- a/panda/src/express/threadSafePointerTo.I +++ b/panda/src/express/threadSafePointerTo.I @@ -226,7 +226,7 @@ p() const { template INLINE ThreadSafeConstPointerTo &ThreadSafeConstPointerTo:: operator = (const To *ptr) { - reassign((To *)ptr); + this->reassign((To *)ptr); return *this; } @@ -238,7 +238,7 @@ operator = (const To *ptr) { template INLINE ThreadSafeConstPointerTo &ThreadSafeConstPointerTo:: operator = (const ThreadSafePointerTo ©) { - reassign((const ThreadSafePointerToBase &)copy); + this->reassign((const ThreadSafePointerToBase &)copy); return *this; } @@ -250,6 +250,6 @@ operator = (const ThreadSafePointerTo ©) { template INLINE ThreadSafeConstPointerTo &ThreadSafeConstPointerTo:: operator = (const ThreadSafeConstPointerTo ©) { - reassign((const ThreadSafePointerToBase &)copy); + this->reassign((const ThreadSafePointerToBase &)copy); return *this; }