Fix KT Neon / ARM typo (#536)

Removes errant ";" in front of 0xCBAC1FED in non-x86 code

```
error: expected primary-expression before ';' token
     constexpr static uint32_t ka = ;0xCBAC1FED;
                                    ^
error: expected unqualified-id before numeric constant
     constexpr static uint32_t ka = ;0xCBAC1FED;
                                    ^
```
This commit is contained in:
Louie Helm
2025-06-18 16:55:02 +00:00
committed by GitHub
parent 7479c2a3e5
commit 0ade534305

View File

@@ -1586,7 +1586,7 @@ void mul_mat_iq4_kt_F32_T(int n, const void * vx, size_t bx, const DataInfo& inf
}
struct Trellis3 {
constexpr static uint32_t ka = ;0xCBAC1FED;
constexpr static uint32_t ka = 0xCBAC1FED;
constexpr static uint32_t ka1 = ka*ka;
constexpr static uint32_t ka2 = ka1*ka;
constexpr static uint32_t ka3 = ka2*ka;