Skip to content

Commit 217525a

Browse files
authored
Workaround for #106521 (#106578)
1 parent 28f729b commit 217525a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/native/external/zlib-ng/functable.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
* For conditions of distribution and use, see copyright notice in zlib.h
44
*/
55

6+
#if defined(_MSC_VER)
7+
# include <intrin.h>
8+
#endif
9+
610
#include "zbuild.h"
711
#include "zendian.h"
812
#include "crc32_braid_p.h"
@@ -11,10 +15,6 @@
1115
#include "functable.h"
1216
#include "cpu_features.h"
1317

14-
#if defined(_MSC_VER)
15-
# include <intrin.h>
16-
#endif
17-
1818
/* Platform has pointer size atomic store */
1919
#if defined(__GNUC__) || defined(__clang__)
2020
# define FUNCTABLE_ASSIGN(VAR, FUNC_NAME) \

0 commit comments

Comments
 (0)