remove an excessive mutable type specifier

MockFunction's private member cannot be reached from outside and all its
non-static member functions are not const.
This commit is contained in:
Krystian Kuzniarek 2019-08-01 11:33:36 +02:00
parent 9311242db4
commit 637b0411fa

View File

@ -1870,7 +1870,7 @@ class MockFunction<R(Args...)> {
}
private:
mutable internal::FunctionMocker<R(Args...)> mock_;
internal::FunctionMocker<R(Args...)> mock_;
};
// The style guide prohibits "using" statements in a namespace scope