diff options
author | Abseil Team <absl-team@google.com> | 2022-08-05 10:09:33 -0700 |
---|---|---|
committer | Copybara-Service <copybara-worker@google.com> | 2022-08-05 10:10:15 -0700 |
commit | 0c92330442d6b1be934e0407115c8084250ef347 (patch) | |
tree | 36e315599f22ca36f00e14061b1e01f877b8e6f8 /absl/base | |
parent | cfe27e79cfcbefb2b4479e04f80cbb299bc46965 (diff) |
Disable ABSL_HAVE_STD_IS_TRIVIALLY_ASSIGNABLE for clang-cl.
The Lexan and MSVC toolchains both set _MSC_VER. The MSVC toolchain must set `ABSL_HAVE_STD_IS_TRIVIALLY_ASSIGNABLE` and `ABSL_HAVE_STD_IS_TRIVIALLY_CONSTRUCTIBLE`, in order to use Abseil workarounds in the absence of these types. This is not necessary for clang-cl.
This change excludes clang-cl from the predicate setting these variables.
PiperOrigin-RevId: 465589196
Change-Id: I0426ec4f844aabe7cdde5c60725f6a9a6b16479f
Diffstat (limited to 'absl/base')
-rw-r--r-- | absl/base/config.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/absl/base/config.h b/absl/base/config.h index 2faed85a..9626548c 100644 --- a/absl/base/config.h +++ b/absl/base/config.h @@ -268,7 +268,7 @@ static_assert(ABSL_INTERNAL_INLINE_NAMESPACE_STR[0] != 'h' || ((ABSL_INTERNAL_HAVE_MIN_GNUC_VERSION(7, 4) && defined(__GLIBCXX__)) || \ (ABSL_INTERNAL_HAVE_MIN_GNUC_VERSION(8, 2) && \ defined(_LIBCPP_VERSION)))) || \ - (defined(_MSC_VER) && !defined(__NVCC__)) + (defined(_MSC_VER) && !defined(__NVCC__) && !defined(__clang__)) #define ABSL_HAVE_STD_IS_TRIVIALLY_CONSTRUCTIBLE 1 #define ABSL_HAVE_STD_IS_TRIVIALLY_ASSIGNABLE 1 #endif |