h6-linting #12

Merged
Mineplay merged 9 commits from h6-linting into main 2025-10-05 10:32:54 -05:00
7 changed files with 9 additions and 9 deletions
Showing only changes of commit d497356835 - Show all commits

View file

@ -50,6 +50,6 @@ typedef enum {
HALLOCY_SIMD_NEON = 7
} HallocySimdType;
HallocySimdType hallocy_is_simd_supported();
HallocySimdType hallocy_is_simd_supported(void);
#endif

View file

@ -23,7 +23,7 @@
static HallocySimdType hallocy_supported_simd = HALLOCY_SIMD_UNDEFINED;
HallocySimdType hallocy_is_simd_supported() {
HallocySimdType hallocy_is_simd_supported(void) {
if (hallocy_supported_simd != HALLOCY_SIMD_UNDEFINED) {
return hallocy_supported_simd;
}