From 72fdf1b86c476e81a3352292962423e76cb141d8 Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Tue, 22 Apr 2025 11:33:14 +0200 Subject: [PATCH] MSC_VER -> _MSC_VER --- .../crypto_aead/aes256gcm/armcrypto/aead_aes256gcm_armcrypto.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libsodium/crypto_aead/aes256gcm/armcrypto/aead_aes256gcm_armcrypto.c b/src/libsodium/crypto_aead/aes256gcm/armcrypto/aead_aes256gcm_armcrypto.c index 8f9bba6d..f50eb6d7 100644 --- a/src/libsodium/crypto_aead/aes256gcm/armcrypto/aead_aes256gcm_armcrypto.c +++ b/src/libsodium/crypto_aead/aes256gcm/armcrypto/aead_aes256gcm_armcrypto.c @@ -15,7 +15,7 @@ #if defined(HAVE_ARMCRYPTO) && defined(__clang__) && defined(NATIVE_LITTLE_ENDIAN) -#if !defined(MSC_VER) || _MSC_VER < 1800 +#if !defined(_MSC_VER) || _MSC_VER < 1800 #define __vectorcall #endif