Skip to content

Commit

Permalink
Prefer __clang_patchlevel__ == 0 based on reviews
Browse files Browse the repository at this point in the history
  • Loading branch information
tpadioleau committed Dec 18, 2024
1 parent c62f997 commit d115823
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/experimental/__p0009_bits/config.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ static_assert(_MDSPAN_CPLUSPLUS >= MDSPAN_CXX_STD_14, "mdspan requires C++14 or
# if defined(_MDSPAN_COMPILER_CLANG) && \
((__clang_major__ < 17) || \
(__clang_major__ == 17 && __clang_minor__ == 0 && \
__clang_patchlevel__ < 1))
__clang_patchlevel__ == 0))
# define MDSPAN_USE_BRACKET_OPERATOR 0
# else
# define MDSPAN_USE_BRACKET_OPERATOR 1
Expand Down

0 comments on commit d115823

Please sign in to comment.