Skip to content

Commit

Permalink
Avoid use of reserved identifier
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterJohnson authored Sep 7, 2023
1 parent 9ae5a26 commit 62d706d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/openjp2/ht_dec.c
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@ OPJ_UINT32 population_count(OPJ_UINT32 val)
#if defined(OPJ_COMPILER_MSVC) && (defined(_M_IX86) || defined(_M_AMD64))
return (OPJ_UINT32)__popcnt(val);
#elif defined(OPJ_COMPILER_MSVC) && defined(_M_ARM64)
const __n64 _Temp = neon_cnt(__uint64ToN64_v(val));
return neon_addv8(_Temp).n8_i8[0];
const __n64 temp = neon_cnt(__uint64ToN64_v(val));
return neon_addv8(temp).n8_i8[0];
#elif (defined OPJ_COMPILER_GNUC)
return (OPJ_UINT32)__builtin_popcount(val);
#else
Expand Down

0 comments on commit 62d706d

Please sign in to comment.