Skip to content

Commit

Permalink
crnlib: fix build on 32-bit MinGW
Browse files Browse the repository at this point in the history
  • Loading branch information
illwieckz committed Jun 24, 2024
1 parent 0f52821 commit a0de21f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crnlib/lzma_Types.h
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,9 @@ typedef int Bool;
#define True 1
#define False 0

#ifdef _MSC_VER
#if defined(_WIN32)

#if _MSC_VER >= 1300
#if defined(_MSC_VER) && _MSC_VER >= 1300
#define MY_NO_INLINE __declspec(noinline)
#else
#define MY_NO_INLINE
Expand Down

0 comments on commit a0de21f

Please sign in to comment.