summaryrefslogtreecommitdiff
path: root/test/buildtool/multithreading/task_system.test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/buildtool/multithreading/task_system.test.cpp')
-rw-r--r--test/buildtool/multithreading/task_system.test.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/buildtool/multithreading/task_system.test.cpp b/test/buildtool/multithreading/task_system.test.cpp
index 4c7c0b47..fb6bbd1f 100644
--- a/test/buildtool/multithreading/task_system.test.cpp
+++ b/test/buildtool/multithreading/task_system.test.cpp
@@ -18,6 +18,7 @@
#include <chrono>
#include <condition_variable>
#include <cstddef>
+#include <cstdint>
#include <functional>
#include <mutex>
#include <numeric> // std::iota
@@ -33,7 +34,7 @@
namespace {
-enum class CallStatus { kNotExecuted, kExecuted };
+enum class CallStatus : std::uint8_t { kNotExecuted, kExecuted };
} // namespace