Skip to content

Commit

Permalink
deps: cherry-pick win/arm64/clang fix for nghttp3
Browse files Browse the repository at this point in the history
  • Loading branch information
zcbenz committed Mar 3, 2023
1 parent a37b72d commit c92421a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deps/ngtcp2/nghttp3/lib/nghttp3_ringbuf.c
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@

#include "nghttp3_macro.h"

#if defined(_MSC_VER) && defined(_M_ARM64)
#if defined(_MSC_VER) && !defined(__clang__) && (defined(_M_ARM) || defined(_M_ARM64))
unsigned int __popcnt(unsigned int x) {
unsigned int c = 0;
for (; x; ++c) {
Expand Down

0 comments on commit c92421a

Please sign in to comment.