aboutsummaryrefslogtreecommitdiffstats
path: root/include/gmock/gmock-more-actions.h
diff options
context:
space:
mode:
authorzhanyong.wan <zhanyong.wan@8415998a-534a-0410-bf83-d39667b30386>2010-05-10 17:14:29 +0000
committerzhanyong.wan <zhanyong.wan@8415998a-534a-0410-bf83-d39667b30386>2010-05-10 17:14:29 +0000
commit02f7106557fde1f1075dc53d65ef1f7a11851f93 (patch)
tree6218ed0ee19038e58ffe1f5c6571ed17e195df1c /include/gmock/gmock-more-actions.h
parent76c1c612e23d87874669faf0b1c8f74caa4a7eb4 (diff)
downloadgoogletest-02f7106557fde1f1075dc53d65ef1f7a11851f93.tar.gz
googletest-02f7106557fde1f1075dc53d65ef1f7a11851f93.tar.bz2
googletest-02f7106557fde1f1075dc53d65ef1f7a11851f93.zip
Moves the universal printer from gmock to gtest (by Vlad Losev).
Diffstat (limited to 'include/gmock/gmock-more-actions.h')
-rw-r--r--include/gmock/gmock-more-actions.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/gmock/gmock-more-actions.h b/include/gmock/gmock-more-actions.h
index 6226392d..9a6fe969 100644
--- a/include/gmock/gmock-more-actions.h
+++ b/include/gmock/gmock-more-actions.h
@@ -162,7 +162,7 @@ ACTION_TEMPLATE(SetArgReferee,
// Ensures that argument #k is a reference. If you get a compiler
// error on the next line, you are using SetArgReferee<k>(value) in
// a mock function whose k-th (0-based) argument is not a reference.
- GMOCK_COMPILE_ASSERT_(internal::is_reference<argk_type>::value,
+ GTEST_COMPILE_ASSERT_(internal::is_reference<argk_type>::value,
SetArgReferee_must_be_used_with_a_reference_argument);
::std::tr1::get<k>(args) = value;
}