Skip to content

Commit

Permalink
Pulled. Pushing lucijan fix for #18.
Browse files Browse the repository at this point in the history
  • Loading branch information
NoAvailableAlias committed Jul 13, 2016
1 parent e9d8a03 commit 34223a4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nano_observer.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ class Observer

//-----------------------------------------------------------PRIVATE METHODS

void insert(DelegateKey const& key, Observer* ptr)
void insert(DelegateKey const& key, Observer* obs)
{
head = new Node { { key, ptr }, head };
head = new Node { { key, obs }, head };
}

void remove(DelegateKey const& key, Observer* obs)
Expand Down

0 comments on commit 34223a4

Please sign in to comment.