Skip to content

Commit

Permalink
WIN: Don't override __attribute__ if using clang.
Browse files Browse the repository at this point in the history
  • Loading branch information
dsvensson committed Mar 13, 2024
1 parent f4a2da7 commit 554a031
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bspfile.h
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ typedef struct

#define HEADER_LUMPS 15

#if defined(_MSC_VER) && !defined(__attribute__)
#if defined(_MSC_VER) && !defined(__clang__) && !defined(__attribute__)
#define __attribute__(A) /**/
#endif

Expand Down

0 comments on commit 554a031

Please sign in to comment.