diff options
author | zhanyong.wan <zhanyong.wan@8415998a-534a-0410-bf83-d39667b30386> | 2011-02-23 19:39:27 +0000 |
---|---|---|
committer | zhanyong.wan <zhanyong.wan@8415998a-534a-0410-bf83-d39667b30386> | 2011-02-23 19:39:27 +0000 |
commit | ed6c9277bb12f2808bb812ae8f91492dac9517b4 (patch) | |
tree | 463781d99fd74011cb43829a73bad5023350a22f /scripts/gmock_doctor.py | |
parent | b3e904227f81fc6d2ea577dadbc3e510a989bbd2 (diff) | |
download | googletest-ed6c9277bb12f2808bb812ae8f91492dac9517b4.tar.gz googletest-ed6c9277bb12f2808bb812ae8f91492dac9517b4.tar.bz2 googletest-ed6c9277bb12f2808bb812ae8f91492dac9517b4.zip |
Makes Google Mock compile much faster and use much less memory; reviewed by Nico Weber. This fixes issue 68.
Diffstat (limited to 'scripts/gmock_doctor.py')
-rwxr-xr-x | scripts/gmock_doctor.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/gmock_doctor.py b/scripts/gmock_doctor.py index f7932b5e..ab923efb 100755 --- a/scripts/gmock_doctor.py +++ b/scripts/gmock_doctor.py @@ -261,8 +261,8 @@ def _IncompleteByReferenceArgumentDiagnoser(msg): r'(.*\n)*?' + _CLANG_NON_GMOCK_FILE_LINE_RE + r'note: in instantiation of member function ' - r'\'testing::internal::FunctionMocker<.*>::Invoke\' ' - r'requested here') + r'\'testing::internal2::TypeWithoutFormatter<.*>::' + r'PrintValue\' requested here') diagnosis = """ In order to mock this function, Google Mock needs to see the definition of type "%(type)s" - declaration alone is not enough. Either #include |