Skip to content

Commit

Permalink
Workaround for #106521 (#106589)
Browse files Browse the repository at this point in the history
Co-authored-by: Jan Kotas <jkotas@microsoft.com>
  • Loading branch information
github-actions[bot] and jkotas committed Aug 18, 2024
1 parent 63c9565 commit 01607d3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/native/external/zlib-ng/functable.c
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
* For conditions of distribution and use, see copyright notice in zlib.h
*/

#if defined(_MSC_VER)
# include <intrin.h>
#endif

#include "zbuild.h"
#include "zendian.h"
#include "crc32_braid_p.h"
Expand All @@ -11,10 +15,6 @@
#include "functable.h"
#include "cpu_features.h"

#if defined(_MSC_VER)
# include <intrin.h>
#endif

/* Platform has pointer size atomic store */
#if defined(__GNUC__) || defined(__clang__)
# define FUNCTABLE_ASSIGN(VAR, FUNC_NAME) \
Expand Down

0 comments on commit 01607d3

Please sign in to comment.