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 Mar 8, 2024
1 parent 6479026 commit f7e74ab
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 @@ -342,7 +342,7 @@ template <class OuterLoopType> struct ThreadedLoopRunOuter {
struct PerThread {
MutexProtected<Shared> &shared;
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 f7e74ab

Please sign in to comment.