From d732f2014bdd141135e6af06ee5b47e7fbe4b877 Mon Sep 17 00:00:00 2001 From: Abseil Team Date: Thu, 5 Oct 2017 13:33:44 -0700 Subject: Changes imported from Abseil "staging" branch: - d5a5960a133967e4af02836d304884cd6cbd6e46 Adjusting time tests for flakiness by Gennadiy Civil - ccb8535fdc92c3c99bfa2795e75d3fbdcb134571 Internal-only tweak. by Jorg Brown - 4c03dd9e54bd4645e7e7a8dfb3c590f5b0654884 Fix comment on some C++11 type traits backport. by Xiaoyi Zhang - 43cd12d2304464163e33ae932fbb842a869213dd Allow intrinsic int128 to be set for __ppc64__ targets. by Abseil Team - 789e9c13de67ef3c7ba09c765c3484621897b6bb Update README.md description of 'types' library to be con... by Abseil Team - 8be10d7683c90b85244ddc67360a7ca2dfffdf01 Update comment on move constructors' noexcept specificati... by Xiaoyi Zhang GitOrigin-RevId: d5a5960a133967e4af02836d304884cd6cbd6e46 Change-Id: I743efee47b9e65f46a44d9ab80ccd62cfd0c1301 --- absl/meta/type_traits.h | 28 ++++++++++++++++++++-------- 1 file changed, 20 insertions(+), 8 deletions(-) (limited to 'absl/meta/type_traits.h') diff --git a/absl/meta/type_traits.h b/absl/meta/type_traits.h index ced6626..6f7138c 100644 --- a/absl/meta/type_traits.h +++ b/absl/meta/type_traits.h @@ -135,8 +135,11 @@ struct negation : std::integral_constant {}; // // Determines whether the passed type `T` is trivially destructable. // -// This metafunction is designed to be a drop-in replacement for the C++17 -// `std::is_trivially_destructible()` metafunction. +// This metafunction is designed to be a drop-in replacement for the C++11 +// `std::is_trivially_destructible()` metafunction for platforms that have +// incomplete C++11 support (such as libstdc++ 4.x). On any platforms that do +// fully support C++11, we check whether this yields the same result as the std +// implementation. // // NOTE: the extensions (__has_trivial_xxx) are implemented in gcc (version >= // 4.3) and clang. Since we are supporting libstdc++ > 4.7, they should always @@ -157,8 +160,11 @@ struct is_trivially_destructible // // Determines whether the passed type `T` is trivially default constructible. // -// This metafunction is designed to be a drop-in replacement for the C++17 -// `std::is_trivially_default_constructible()` metafunction. +// This metafunction is designed to be a drop-in replacement for the C++11 +// `std::is_trivially_default_constructible()` metafunction for platforms that +// have incomplete C++11 support (such as libstdc++ 4.x). On any platforms that +// do fully support C++11, we check whether this yields the same result as the +// std implementation. // // NOTE: according to the C++ standard, Section: 20.15.4.3 [meta.unary.prop] // "The predicate condition for a template specialization is_constructible());` needs to be well-formed and not call any // nontrivial operation. Nontrivally destructible types will cause the @@ -221,8 +230,11 @@ struct is_trivially_copy_constructible // // Determines whether the passed type `T` is trivially copy assignable. // -// This metafunction is designed to be a drop-in replacement for the C++17 -// `std::is_trivially_copy_assignable()` metafunction. +// This metafunction is designed to be a drop-in replacement for the C++11 +// `std::is_trivially_copy_assignable()` metafunction for platforms that have +// incomplete C++11 support (such as libstdc++ 4.x). On any platforms that do +// fully support C++11, we check whether this yields the same result as the std +// implementation. // // NOTE: `is_assignable::value` is `true` if the expression // `declval() = declval()` is well-formed when treated as an unevaluated -- cgit v1.2.3