1
0
Fork 0

fixed type

This commit is contained in:
Frank Celler 2016-01-15 10:20:47 +01:00
parent cffd81011b
commit b446f4edd6
2 changed files with 2 additions and 2 deletions

View File

@ -441,7 +441,7 @@ Task* Scheduler::lookupTaskById(uint64_t taskId) {
/// @brief returns the loop for a task id
////////////////////////////////////////////////////////////////////////////////
size_t Scheduler::lookupLoopById(uint64_t taskId) {
EventLoop Scheduler::lookupLoopById(uint64_t taskId) {
MUTEX_LOCKER(schedulerLock);
auto&& task = taskRegistered.find(taskId);

View File

@ -215,7 +215,7 @@ class Scheduler : private TaskManager {
/// @brief returns the loop for a task id
//////////////////////////////////////////////////////////////////////////////
size_t lookupLoopById(uint64_t);
EventLoop lookupLoopById(uint64_t);
public:
//////////////////////////////////////////////////////////////////////////////