Skip to content

Commit

Permalink
Apply clang-tidy-review suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
daljit46 committed Nov 22, 2023
1 parent 8448963 commit 9b77ef1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/algo/threaded_loop.h
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ template <class OuterLoopType> 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;
Expand Down

0 comments on commit 9b77ef1

Please sign in to comment.