From b343ac3a649f5713380cdbeee79d2ee6f94ddd93 Mon Sep 17 00:00:00 2001 From: Abseil Team Date: Wed, 10 Feb 2021 18:47:04 -0800 Subject: Export of internal Abseil changes -- 684e488495a2d95def9a865569ad5ba7ec89967f by Abseil Team : Remove references to deleted clang-tidy checks. Tested: TAP --sample ran all affected tests and none failed http://test/OCL:356861384:BASE:356825575:1613005412689:548d66bd PiperOrigin-RevId: 356877726 -- f9d8549cd67866e13bb71b21280ec293684ab43b by Abseil Team : Add missing closing punctuation to two file-level comments. PiperOrigin-RevId: 356867260 GitOrigin-RevId: 684e488495a2d95def9a865569ad5ba7ec89967f Change-Id: Ibe04878684c20a23b214ee7e5df9c6dd434bc3dc --- absl/random/internal/mock_overload_set.h | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) (limited to 'absl/random') diff --git a/absl/random/internal/mock_overload_set.h b/absl/random/internal/mock_overload_set.h index dccc6cee..c5ce3588 100644 --- a/absl/random/internal/mock_overload_set.h +++ b/absl/random/internal/mock_overload_set.h @@ -45,9 +45,8 @@ struct MockSingleOverload { "Overload signature must have return type matching the " "distribution result_type."); using KeyT = Ret(DistrT, std::tuple); - auto gmock_Call( - absl::MockingBitGen& gen, // NOLINT(google-runtime-references) - const ::testing::Matcher&... matchers) + auto gmock_Call(absl::MockingBitGen& gen, + const ::testing::Matcher&... matchers) -> decltype(MockHelpers::MockFor(gen).gmock_Call(matchers...)) { return MockHelpers::MockFor(gen).gmock_Call(matchers...); } @@ -59,10 +58,9 @@ struct MockSingleOverload { "Overload signature must have return type matching the " "distribution result_type."); using KeyT = Ret(DistrT, std::tuple); - auto gmock_Call( - const ::testing::Matcher& matcher, - absl::MockingBitGen& gen, // NOLINT(google-runtime-references) - const ::testing::Matcher&... matchers) + auto gmock_Call(const ::testing::Matcher& matcher, + absl::MockingBitGen& gen, + const ::testing::Matcher&... matchers) -> decltype(MockHelpers::MockFor(gen).gmock_Call(matcher, matchers...)) { return MockHelpers::MockFor(gen).gmock_Call(matcher, matchers...); -- cgit v1.2.3