<feed xmlns='http://www.w3.org/2005/Atom'>
<title>googletest/googlemock/src, branch master</title>
<subtitle>Google Test framework</subtitle>
<id>https://git.raptorcs.com/git/googletest/atom?h=master</id>
<link rel='self' href='https://git.raptorcs.com/git/googletest/atom?h=master'/>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/googletest/'/>
<updated>2021-02-18T18:27:00+00:00</updated>
<entry>
<title>Googletest export</title>
<updated>2021-02-18T18:27:00+00:00</updated>
<author>
<name>Abseil Team</name>
<email>absl-team@google.com</email>
</author>
<published>2021-02-16T20:58:39+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/googletest/commit/?id=58937787164c94d609af8a326a19cb3e3dfb630c'/>
<id>urn:sha1:58937787164c94d609af8a326a19cb3e3dfb630c</id>
<content type='text'>
Update stale links to `gmock_cook_book.md`.

I'm a new googletest user and found these links broken when reading the documentation.

PiperOrigin-RevId: 357786392
</content>
</entry>
<entry>
<title>Googletest export</title>
<updated>2020-08-07T17:08:09+00:00</updated>
<author>
<name>Abseil Team</name>
<email>absl-team@google.com</email>
</author>
<published>2020-08-05T14:42:03+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/googletest/commit/?id=d0de618a58d5dcf1014123fc5e829a307066bf9a'/>
<id>urn:sha1:d0de618a58d5dcf1014123fc5e829a307066bf9a</id>
<content type='text'>
Fixing exception-safety bug in googletest. Previously, if an exception was
thrown during a call to a mock that would have triggered an error, the error
was discarded.

Fixes #2890

PiperOrigin-RevId: 325017806
</content>
</entry>
<entry>
<title>Googletest export</title>
<updated>2020-07-09T17:35:10+00:00</updated>
<author>
<name>Abseil Team</name>
<email>absl-team@google.com</email>
</author>
<published>2020-07-07T15:57:38+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/googletest/commit/?id=9aaaaf3f3d0099b4130660a1d4af6c6710482889'/>
<id>urn:sha1:9aaaaf3f3d0099b4130660a1d4af6c6710482889</id>
<content type='text'>
Cleanup: Error message grammar fix.
PiperOrigin-RevId: 319992912
</content>
</entry>
<entry>
<title>Googletest export</title>
<updated>2020-07-09T17:35:01+00:00</updated>
<author>
<name>Abseil Team</name>
<email>absl-team@google.com</email>
</author>
<published>2020-07-07T15:51:37+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/googletest/commit/?id=b9a8afcf2ee1a56f4617e253d95a10a4406f537f'/>
<id>urn:sha1:b9a8afcf2ee1a56f4617e253d95a10a4406f537f</id>
<content type='text'>
Fix mismatch between `int` and `int32_t` in the parse function.
On some platforms, those are different types.

PiperOrigin-RevId: 319991862
</content>
</entry>
<entry>
<title>Remove all uses of GTEST_DISALLOW_{MOVE_,}ASSIGN_.</title>
<updated>2020-04-24T02:22:07+00:00</updated>
<author>
<name>Arthur O'Dwyer</name>
<email>arthur.j.odwyer@gmail.com</email>
</author>
<published>2020-04-16T19:52:17+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/googletest/commit/?id=766ac2e1a413e87d42d67e3286c70f0af4853679'/>
<id>urn:sha1:766ac2e1a413e87d42d67e3286c70f0af4853679</id>
<content type='text'>
None of these are strictly needed for correctness.
A large number of them (maybe all of them?) trigger `-Wdeprecated`
warnings on Clang trunk as soon as you try to use the implicitly
defaulted (but deprecated) copy constructor of a class that has
deleted its copy assignment operator.

By declaring a deleted copy assignment operator, the old code
also caused the move constructor and move assignment operator
to be non-declared. This means that the old code never got move
semantics -- "move-construction" would simply call the defaulted
(but deprecated) copy constructor instead. With the new code,
"move-construction" calls the defaulted move constructor, which
I believe is what we want to happen. So this is a runtime
performance optimization.

Unfortunately we can't yet physically remove the definitions
of these macros from gtest-port.h, because they are being used
by other code internally at Google (according to zhangxy988).
But no new uses should be added going forward.
</content>
</entry>
<entry>
<title>Googletest export</title>
<updated>2020-02-07T23:20:45+00:00</updated>
<author>
<name>Abseil Team</name>
<email>absl-team@google.com</email>
</author>
<published>2020-02-07T21:09:11+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/googletest/commit/?id=41b5f149ab306e96b5b2faf523505d75acffd98a'/>
<id>urn:sha1:41b5f149ab306e96b5b2faf523505d75acffd98a</id>
<content type='text'>
Get rid of gmock-generated-matchers.h and gmock-generated-matchers.h.pump.

Stop using pump for MATCHER* macroses generation.

PiperOrigin-RevId: 293878808
</content>
</entry>
<entry>
<title>Revert "remove MSVC workaround: wmain link error in the static library"</title>
<updated>2019-11-27T14:01:03+00:00</updated>
<author>
<name>Krystian Kuzniarek</name>
<email>krystian.kuzniarek@gmail.com</email>
</author>
<published>2019-11-27T14:01:03+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/googletest/commit/?id=3957b8898b589fd335971e1bfc5aa5d886a131e5'/>
<id>urn:sha1:3957b8898b589fd335971e1bfc5aa5d886a131e5</id>
<content type='text'>
This reverts commit 298a40f023e6813d2bf73847c3a38ceaf5e46320.
</content>
</entry>
<entry>
<title>Revert "unify googletest and googlemock main functions"</title>
<updated>2019-11-27T14:00:52+00:00</updated>
<author>
<name>Krystian Kuzniarek</name>
<email>krystian.kuzniarek@gmail.com</email>
</author>
<published>2019-11-27T14:00:52+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/googletest/commit/?id=967d8e05c2f006dc0bcebb3b0b28ecc637204b8d'/>
<id>urn:sha1:967d8e05c2f006dc0bcebb3b0b28ecc637204b8d</id>
<content type='text'>
This reverts commit a909becdc599c46bcb57346b6123cb57cd07d15d.
</content>
</entry>
<entry>
<title>unify googletest and googlemock main functions</title>
<updated>2019-11-22T16:45:04+00:00</updated>
<author>
<name>Krystian Kuzniarek</name>
<email>krystian.kuzniarek@gmail.com</email>
</author>
<published>2019-11-17T15:39:03+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/googletest/commit/?id=a909becdc599c46bcb57346b6123cb57cd07d15d'/>
<id>urn:sha1:a909becdc599c46bcb57346b6123cb57cd07d15d</id>
<content type='text'>
</content>
</entry>
<entry>
<title>remove MSVC workaround: wmain link error in the static library</title>
<updated>2019-11-22T16:45:04+00:00</updated>
<author>
<name>Krystian Kuzniarek</name>
<email>krystian.kuzniarek@gmail.com</email>
</author>
<published>2019-11-17T15:37:41+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/googletest/commit/?id=298a40f023e6813d2bf73847c3a38ceaf5e46320'/>
<id>urn:sha1:298a40f023e6813d2bf73847c3a38ceaf5e46320</id>
<content type='text'>
</content>
</entry>
</feed>
