From eb84566d236df6b0dd4f5ce8fc47d66e55e33654 Mon Sep 17 00:00:00 2001 From: aqua Date: Thu, 29 Jun 2023 21:45:11 +0300 Subject: Fix compiler warnings --- src/sched/test_roundrobin.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/sched') diff --git a/src/sched/test_roundrobin.cc b/src/sched/test_roundrobin.cc index 1431788..89f60bf 100644 --- a/src/sched/test_roundrobin.cc +++ b/src/sched/test_roundrobin.cc @@ -43,7 +43,7 @@ TEST(roundrobin, RoundRobinQueue) std::cout << "Completed in (us): " << duration << std::endl; // test should complete in 250us unless running on valgrind - if (!RUNNING_ON_VALGRIND) EXPECT_LE(duration, 250); + if (!RUNNING_ON_VALGRIND) { EXPECT_LE(duration, 250); } EXPECT_EQ(queue.head, nullptr); EXPECT_EQ(queue.tail, nullptr); -- cgit v1.2.1