Skip to content
This repository has been archived by the owner on Sep 30, 2018. It is now read-only.

Commit

Permalink
[osx] fix compiler errror
Browse files Browse the repository at this point in the history
  • Loading branch information
amet committed May 10, 2012
1 parent 544029d commit 3fd2548
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/libUPnP/Neptune/Source/Core/NptStack.h
Expand Up @@ -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) {
Expand Down

0 comments on commit 3fd2548

Please sign in to comment.