From bf4fcbdb5e427b98abc16f8f455f005c797f2f24 Mon Sep 17 00:00:00 2001 From: Evan Tschannen Date: Wed, 17 Mar 2021 16:31:44 -0700 Subject: [PATCH] fix compile error --- fdbrpc/sim2.actor.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fdbrpc/sim2.actor.cpp b/fdbrpc/sim2.actor.cpp index 60731240c6..b640c7816f 100644 --- a/fdbrpc/sim2.actor.cpp +++ b/fdbrpc/sim2.actor.cpp @@ -869,8 +869,8 @@ public: tasks.push(Task(actualTime + seconds, taskID, ordered ? taskCount++ : (deterministicRandom()->randomUInt64() << 32) | taskCount++, + ordered, machine, - ordered, f)); mutex.leave(); @@ -2115,7 +2115,7 @@ public: mutex.enter(); ASSERT(taskID >= TaskPriority::Min && taskID <= TaskPriority::Max); - tasks.push(Task(actualTime, taskID, taskCount++, getCurrentProcess(), true, std::move(signal))); + tasks.push(Task(actualTime, taskID, taskCount++, true, getCurrentProcess(), std::move(signal))); mutex.leave(); } bool isOnMainThread() const override { return net2->isOnMainThread(); }