mirror of https://gitee.com/bigwinds/arangodb
fixed type
This commit is contained in:
parent
cffd81011b
commit
b446f4edd6
|
@ -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);
|
||||
|
|
|
@ -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:
|
||||
//////////////////////////////////////////////////////////////////////////////
|
||||
|
|
Loading…
Reference in New Issue