diff options
author | kosak <kosak@google.com> | 2014-01-29 06:41:44 +0000 |
---|---|---|
committer | kosak <kosak@google.com> | 2014-01-29 06:41:44 +0000 |
commit | b5c81098a8ccc25e313ffca56c911200b3591ea0 (patch) | |
tree | aec9b41c3d676f2105e41bd2f78b4a2ac48b27de /src | |
parent | b93d0f10d5a1bab088223a57420ef599b26a5e0f (diff) | |
download | googletest-b5c81098a8ccc25e313ffca56c911200b3591ea0.tar.gz googletest-b5c81098a8ccc25e313ffca56c911200b3591ea0.tar.bz2 googletest-b5c81098a8ccc25e313ffca56c911200b3591ea0.zip |
Support mocking methods with move-only return types.
Diffstat (limited to 'src')
-rw-r--r-- | src/gmock-spec-builders.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gmock-spec-builders.cc b/src/gmock-spec-builders.cc index cefb580f..a74f9e57 100644 --- a/src/gmock-spec-builders.cc +++ b/src/gmock-spec-builders.cc @@ -332,7 +332,7 @@ const char* UntypedFunctionMockerBase::Name() const // Calculates the result of invoking this mock function with the given // arguments, prints it, and returns it. The caller is responsible // for deleting the result. -const UntypedActionResultHolderBase* +UntypedActionResultHolderBase* UntypedFunctionMockerBase::UntypedInvokeWith(const void* const untyped_args) GTEST_LOCK_EXCLUDED_(g_gmock_mutex) { if (untyped_expectations_.size() == 0) { @@ -370,7 +370,7 @@ UntypedFunctionMockerBase::UntypedInvokeWith(const void* const untyped_args) this->UntypedDescribeUninterestingCall(untyped_args, &ss); // Calculates the function result. - const UntypedActionResultHolderBase* const result = + UntypedActionResultHolderBase* const result = this->UntypedPerformDefaultAction(untyped_args, ss.str()); // Prints the function result. @@ -417,7 +417,7 @@ UntypedFunctionMockerBase::UntypedInvokeWith(const void* const untyped_args) untyped_expectation->DescribeLocationTo(&loc); } - const UntypedActionResultHolderBase* const result = + UntypedActionResultHolderBase* const result = untyped_action == NULL ? this->UntypedPerformDefaultAction(untyped_args, ss.str()) : this->UntypedPerformAction(untyped_action, untyped_args); |