Skip to content

Commit

Permalink
Merge pull request #831 from mmuetzel/graphblas
Browse files Browse the repository at this point in the history
GraphBLAS: Avoid warning from Clang 17.
  • Loading branch information
DrTimothyAldenDavis authored Jun 7, 2024
2 parents a0926d6 + 1f5a559 commit 3e4148d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion GraphBLAS/Source/omp/include/GB_atomics.h
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@
#define GB_ATOMIC_COMPARE_EXCHANGE_32(target, expected, desired) \
( \
GB_PUN (int32_t, expected) == \
_InterlockedCompareExchange ((int32_t volatile *) (target), \
_InterlockedCompareExchange ((long volatile *) (target), \
GB_PUN (int32_t, desired), GB_PUN (int32_t, expected)) \
)

Expand Down

0 comments on commit 3e4148d

Please sign in to comment.