aboutsummaryrefslogtreecommitdiff
path: root/lib/libUPnP/Neptune
diff options
context:
space:
mode:
authoramet <amet.nospam@gmail.com>2012-05-10 19:50:57 +0400
committeramet <amet.nospam@gmail.com>2012-05-10 19:50:57 +0400
commit3fd25488ba88b30cfa0f5b834bbde91a21f05a73 (patch)
tree5deb53759893a56bba56d071f103e22766f6fb90 /lib/libUPnP/Neptune
parent544029d3ac26bd6e26eb37170a6a02b52d5ba1ba (diff)
[osx] fix compiler errror
Diffstat (limited to 'lib/libUPnP/Neptune')
-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) {