Fix Runtime Bug in class Timer

Now callable and vcallable are copied, while args... remains referenced.
This commit is contained in:
Kirigaya Kazuto 2017-05-22 15:02:04 +08:00
parent a7ab24d8ab
commit ee8780fe30

View File

@ -514,7 +514,7 @@ namespace MiniEngine
template<typename VoidCallable,typename... Args>
Timer(Uint32 interval,VoidCallable&& vcallable,Args&&... args) : Timer()
{
auto realCall=[&](Uint32 ims)->Uint32{vcallable(ims,args...);return ims;};
auto realCall=[&,vcallable](Uint32 ims)->Uint32{vcallable(ims,args...);return ims;};
auto pfunc=new std::function<Uint32(Uint32 interval)>(realCall);
_real_timer_call(_global_timer_executor,interval,pfunc);
}
@ -523,7 +523,7 @@ namespace MiniEngine
template<typename Callable,typename... Args>
Timer(Callable&& callable,Uint32 interval,Args&&... args) : Timer()
{
auto realCall=[&](Uint32 ims)->Uint32{return callable(ims,args...);};
auto realCall=[&,callable](Uint32 ims)->Uint32{return callable(ims,args...);};
auto pfunc=new std::function<Uint32(Uint32 interval)>(realCall);
_real_timer_call(_global_timer_executor,interval,pfunc);
}