Skip to content

Commit 544f1f1

Browse files
authored
ggml : fix __MSC_VER -> _MSC_VER (#6977)
ggml-ci
1 parent ffe6665 commit 544f1f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ggml-impl.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ inline static int32x4_t ggml_vdotq_s32(int32x4_t acc, int8x16_t a, int8x16_t b)
313313

314314
#endif // defined(__ARM_NEON)
315315

316-
#if defined(__ARM_NEON) && !defined(__MSC_VER)
316+
#if defined(__ARM_NEON) && !defined(_MSC_VER)
317317

318318
#define GGML_COMPUTE_FP16_TO_FP32(x) ggml_compute_fp16_to_fp32(x)
319319
#define GGML_COMPUTE_FP32_TO_FP16(x) ggml_compute_fp32_to_fp16(x)

0 commit comments

Comments
 (0)