From 9b77ef17da409be5a06325d3ddaaafb768c27c54 Mon Sep 17 00:00:00 2001 From: Daljit Singh Date: Wed, 22 Nov 2023 13:20:52 +0000 Subject: [PATCH] Apply clang-tidy-review suggestions --- core/algo/threaded_loop.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/algo/threaded_loop.h b/core/algo/threaded_loop.h index 1e31d32c5d..006abe3173 100644 --- a/core/algo/threaded_loop.h +++ b/core/algo/threaded_loop.h @@ -345,7 +345,7 @@ template struct ThreadedLoopRunOuter { struct PerThread { PerThread(const PerThread &) = default; - PerThread(PerThread &&) = default; + PerThread(PerThread &&) noexcept = default; PerThread &operator=(const PerThread &) = delete; PerThread &operator=(PerThread &&) = delete; ~PerThread() = default;