From ecc56367b8836a552b3716c643da99537c128a13 Mon Sep 17 00:00:00 2001 From: Abseil Team Date: Thu, 7 Dec 2017 07:25:03 -0800 Subject: Changes imported from Abseil "staging" branch: - af7f910500f810f04b5e9835a0655ed509ffb60c Correct comment to refer to simple_pair instead of std::p... by Alex Strelnikov GitOrigin-RevId: af7f910500f810f04b5e9835a0655ed509ffb60c Change-Id: I5829533b8ef07e40f2bb89a6a4b2f9a6128d4f3e --- absl/meta/type_traits_test.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'absl') diff --git a/absl/meta/type_traits_test.cc b/absl/meta/type_traits_test.cc index f0e341f5..67d1c455 100644 --- a/absl/meta/type_traits_test.cc +++ b/absl/meta/type_traits_test.cc @@ -258,7 +258,7 @@ TEST(TypeTraitsTest, TestTrivialCopyCtor) { // types with vtables EXPECT_FALSE(absl::is_trivially_copy_constructible::value); - // Verify that std pair of such types is trivially copy constructible + // Verify that simple_pair of such types is trivially copy constructible EXPECT_TRUE( (absl::is_trivially_copy_constructible>::value)); EXPECT_TRUE(( @@ -270,7 +270,7 @@ TEST(TypeTraitsTest, TestTrivialCopyCtor) { typedef int int10[10]; EXPECT_FALSE(absl::is_trivially_copy_constructible::value); - // Verify that pairs of types without trivial copy constructors + // Verify that simple_pairs of types without trivial copy constructors // are not marked as trivial. EXPECT_FALSE((absl::is_trivially_copy_constructible< simple_pair>::value)); -- cgit v1.2.3