From 95faab73faf6b2dfe44f1cf1e53e860bf747e446 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20M=C3=BCller?= Date: Mon, 4 Jul 2022 14:43:48 +0200 Subject: [PATCH] Test for std::chrono and std::unique_ptr. --- repos/os/src/app/cpu_burner/main.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repos/os/src/app/cpu_burner/main.cc b/repos/os/src/app/cpu_burner/main.cc index 86a64b934d..285f769c42 100644 --- a/repos/os/src/app/cpu_burner/main.cc +++ b/repos/os/src/app/cpu_burner/main.cc @@ -38,7 +38,7 @@ struct Cpu_burn : Thread while (true) { _block.block(); - while (!_stop) { } + while (!_stop) { } _stop = false; }