Skip to content

Commit 14fe56d

Browse files
committed
[utils] fix
1 parent 222b28d commit 14fe56d

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/uwvm2/utils/hash/xxh3.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -984,9 +984,9 @@ UWVM_MODULE_EXPORT namespace uwvm2::utils::hash
984984
#elif __has_cpp_attribute(__gnu__::__vector_size__) && defined(__LITTLE_ENDIAN__) && defined(__ARM_NEON)
985985

986986
# if defined(__clang__)
987-
using uint64x2_t [[clang::neon_vector_type(2)]] = ::std::uint64_t;
988-
using uint32x4_t [[clang::neon_vector_type(4)]] = ::std::uint32_t;
989-
using int8x16_t [[clang::neon_vector_type(16)]] = ::std::int8_t;
987+
using uint64x2_t = ::std::uint64_t [[clang::neon_vector_type(2)]];
988+
using uint32x4_t = ::std::uint32_t [[clang::neon_vector_type(4)]];
989+
using int8x16_t = ::std::int8_t [[clang::neon_vector_type(16)]];
990990
# elif defined(__GNUC__)
991991
using uint64x2_t = __Uint64x2_t;
992992
using uint32x4_t = __Uint32x4_t;

0 commit comments

Comments
 (0)