From 3fd25488ba88b30cfa0f5b834bbde91a21f05a73 Mon Sep 17 00:00:00 2001 From: amet Date: Thu, 10 May 2012 19:50:57 +0400 Subject: [osx] fix compiler errror --- lib/libUPnP/Neptune/Source/Core/NptStack.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/libUPnP/Neptune/Source/Core/NptStack.h b/lib/libUPnP/Neptune/Source/Core/NptStack.h index 034b3ec4bf..933c12cc23 100644 --- a/lib/libUPnP/Neptune/Source/Core/NptStack.h +++ b/lib/libUPnP/Neptune/Source/Core/NptStack.h @@ -48,7 +48,7 @@ class NPT_Stack : public NPT_List public: // methods NPT_Result Push(const T& value) { - return Add(value); + return this->Add(value); } NPT_Result Peek(T& value) { -- cgit v1.2.3