From 2770958199fc114ead46de3e5c8b0050eb081139 Mon Sep 17 00:00:00 2001 From: Abseil Team Date: Tue, 22 Jan 2019 09:58:06 -0500 Subject: [PATCH] Googletest export Make internal FunctionMocker class final PiperOrigin-RevId: 230332778 --- googlemock/include/gmock/gmock-spec-builders.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/googlemock/include/gmock/gmock-spec-builders.h b/googlemock/include/gmock/gmock-spec-builders.h index 9a81cfbc..1f261bd2 100644 --- a/googlemock/include/gmock/gmock-spec-builders.h +++ b/googlemock/include/gmock/gmock-spec-builders.h @@ -1453,7 +1453,7 @@ template class FunctionMocker; template -class FunctionMocker : public UntypedFunctionMockerBase { +class FunctionMocker final : public UntypedFunctionMockerBase { using F = R(Args...); public: