Skip to content

Commit

Permalink
Require clang >=15 for _BitInt support (#4176)
Browse files Browse the repository at this point in the history
For appleclang, fixes issue #4173
  • Loading branch information
Arghnews authored Sep 26, 2024
1 parent 96dca56 commit fade652
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/fmt/base.h
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ inline auto map(uint128_opt) -> monostate { return {}; }
#endif

#ifndef FMT_USE_BITINT
# define FMT_USE_BITINT (FMT_CLANG_VERSION >= 1400)
# define FMT_USE_BITINT (FMT_CLANG_VERSION >= 1500)
#endif

#if FMT_USE_BITINT
Expand Down

0 comments on commit fade652

Please sign in to comment.