mirror of https://github.com/x64dbg/GleeBug
fix
This commit is contained in:
parent
f0ef6ed929
commit
0a030f8b26
|
|
@ -67,10 +67,7 @@ namespace GleeBug
|
||||||
void StepInto(T* debugger, void(T::*callback)())
|
void StepInto(T* debugger, void(T::*callback)())
|
||||||
{
|
{
|
||||||
static_cast<void>(static_cast<Debugger *>(debugger));
|
static_cast<void>(static_cast<Debugger *>(debugger));
|
||||||
StepInto(std::bind([](void (T::*callback)(), T* debugger)
|
StepInto(std::bind(callback, debugger));
|
||||||
{
|
|
||||||
(debugger->*callback)();
|
|
||||||
}, callback, debugger));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue