aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/libUPnP/Neptune/Source/Core/NptStack.h2
1 files changed, 1 insertions, 1 deletions
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<T>
public:
// methods
NPT_Result Push(const T& value) {
- return Add(value);
+ return this->Add(value);
}
NPT_Result Peek(T& value) {