Commit 637b0411 by Krystian Kuzniarek

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.
parent 9311242d
...@@ -1870,7 +1870,7 @@ class MockFunction<R(Args...)> { ...@@ -1870,7 +1870,7 @@ class MockFunction<R(Args...)> {
} }
private: private:
mutable internal::FunctionMocker<R(Args...)> mock_; internal::FunctionMocker<R(Args...)> mock_;
}; };
// The style guide prohibits "using" statements in a namespace scope // The style guide prohibits "using" statements in a namespace scope
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment