Skip to content

Commit

Permalink
Fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
Rombur committed Oct 26, 2023
1 parent 33010ec commit c4d0dfe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/Threads/Kokkos_Threads_Instance.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -595,7 +595,7 @@ void ThreadsInternal::initialize(int thread_count_arg) {
for (unsigned ith = 1; ith < thread_count; ++ith) {
// Try to protect against cache coherency failure by casting to volatile.
ThreadsInternal *const th =
((ThreadsInternal *volatile *)s_threads_exec)[ith];
((ThreadsInternal * volatile *)s_threads_exec)[ith];
if (th) {
wait_yield(th->m_pool_state, ThreadState::Active);
} else {
Expand Down

0 comments on commit c4d0dfe

Please sign in to comment.