Skip to content

Commit

Permalink
Fixup for bug in Clang 16 in longlong.h
Browse files Browse the repository at this point in the history
  • Loading branch information
albinahlback committed Jan 12, 2025
1 parent 765e7d3 commit 5512768
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/longlong.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
extern "C" {
#endif

/* FIXME: Bug in Clang 18 */
#if __clang_major__ >= 18
/* FIXME: Bug in Clang 16+ */
#if __clang_major__ >= 16
# define CLANG_volatile volatile
#else
# define CLANG_volatile
Expand Down

0 comments on commit 5512768

Please sign in to comment.