Moving delegate to poly.

This commit is contained in:
Ben Vanik
2014-12-20 08:49:11 -08:00
parent a0eebf8898
commit c1df273600
6 changed files with 31 additions and 61 deletions

View File

@@ -15,7 +15,7 @@
#include <string>
#include <unordered_map>
#include <alloy/delegate.h>
#include <poly/delegate.h>
namespace alloy {
namespace runtime {
@@ -104,7 +104,7 @@ class Debugger {
void OnBreakpointHit(ThreadState* thread_state, Breakpoint* breakpoint);
public:
Delegate<BreakpointHitEvent> breakpoint_hit;
poly::Delegate<BreakpointHitEvent> breakpoint_hit;
private:
Runtime* runtime_;