From 72f7acda1525d332b1cc9fdd893fa073528eea4a Mon Sep 17 00:00:00 2001 From: HedgehogInTheCPP Date: Tue, 25 Aug 2026 23:00:11 +0300 Subject: [PATCH] Improvements detection of features, part 17 --- include/fast_float/constexpr_feature_detect.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/fast_float/constexpr_feature_detect.h b/include/fast_float/constexpr_feature_detect.h index 11ef4e5..5a7b8f0 100644 --- a/include/fast_float/constexpr_feature_detect.h +++ b/include/fast_float/constexpr_feature_detect.h @@ -130,6 +130,8 @@ // VS2019 v16.10 and later except clang-cl (https://reviews.llvm.org/D110485). #elif defined(_MSC_VER) && _MSC_VER >= 1929 && !defined(__clang__) #define FASTFLOAT_NO_UNIQUE_ADDRESS [[msvc::no_unique_address]] +#else +#define FASTFLOAT_NO_UNIQUE_ADDRESS #endif #endif // FASTFLOAT_CONSTEXPR_FEATURE_DETECT_H