From 6f66987ad40ddc48f040128e7d0a08e9f3be61c3 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 ba9251f3ce..282476899f 100644 --- a/core/algo/threaded_loop.h +++ b/core/algo/threaded_loop.h @@ -342,7 +342,7 @@ template struct ThreadedLoopRunOuter { struct PerThread { MutexProtected &shared; PerThread(const PerThread &) = default; - PerThread(PerThread &&) = default; + PerThread(PerThread &&) noexcept = default; PerThread &operator=(const PerThread &) = delete; PerThread &operator=(PerThread &&) = delete; ~PerThread() = default;