Skip to content

Commit

Permalink
iox-#2011 Fix clang-tidy warning
Browse files Browse the repository at this point in the history
  • Loading branch information
elBoberido committed Jan 10, 2025
1 parent 6794c8e commit f7fc083
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion iceoryx_hoofs/concurrent/sync/include/iox/spin_lock.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ class SpinLock : public LockInterface<SpinLock>
const concurrent::Atomic<bool> m_recursive{false};
concurrent::Atomic<pid_t> m_pid{0};
concurrent::Atomic<uint64_t> m_recursive_count{0};
concurrent::Atomic<std::thread::id> m_tid{};
concurrent::Atomic<std::thread::id> m_tid{std::thread::id()};
};

class SpinLockBuilder
Expand Down

0 comments on commit f7fc083

Please sign in to comment.