Skip to content

Commit

Permalink
Fix an regression error on my previous commit (_protocols)
Browse files Browse the repository at this point in the history
  • Loading branch information
MathieuPOUX committed Jul 15, 2016
1 parent 40d213d commit 99e0caa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MonaCore/include/Mona/Protocols.h
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ class Protocols : public virtual Object {
_invoker.setString(String::Format(buffer,name,".",it.first), it.second);

NOTE(name, " server started on ",host,":",port, dynamic_cast<const UDProtocol*>(pProtocol.get()) ? " (UDP)" : " (TCP)");
protocols.emplace_hint(it, std::piecewise_construct,std::forward_as_tuple(name),std::forward_as_tuple(pProtocol.release()));
_protocols.emplace_hint(it, std::piecewise_construct,std::forward_as_tuple(name),std::forward_as_tuple(pProtocol.release()));
}


Expand Down

0 comments on commit 99e0caa

Please sign in to comment.