mirror of
https://github.com/google/googletest.git
synced 2025-04-06 05:55:04 +00:00
Fixes an error when compiling with gcc 4.4.
This commit is contained in:
parent
3fbd2dd020
commit
946bc64fcf
1 changed files with 1 additions and 1 deletions
|
@ -1083,7 +1083,7 @@ class FunctionMockerBase : public UntypedFunctionMockerBase {
|
|||
// called by the ON_CALL() and EXPECT_CALL() macros.
|
||||
FunctionMocker<F>& RegisterOwner(const void* mock_obj) {
|
||||
Mock::Register(mock_obj, this);
|
||||
return *down_cast<FunctionMocker<F>*>(this);
|
||||
return *::testing::internal::down_cast<FunctionMocker<F>*>(this);
|
||||
}
|
||||
|
||||
// The following two functions are from UntypedFunctionMockerBase.
|
||||
|
|
Loading…
Add table
Reference in a new issue