]> git-server-git.apps.pok.os.sepia.ceph.com Git - googletest.git/log
googletest.git
10 years agoAdding missing files to googlemock distribution.
Martin Maly [Sun, 20 Sep 2015 06:10:58 +0000 (23:10 -0700)]
Adding missing files to googlemock distribution.

10 years agoMerge pull request #591 from google/BillyDonahue-patch-1
Billy Donahue [Thu, 17 Sep 2015 22:24:36 +0000 (18:24 -0400)]
Merge pull request #591 from google/BillyDonahue-patch-1

Fix relative links in googlemock docs.

10 years agoFix relative links in googlemock docs.
Billy Donahue [Thu, 17 Sep 2015 22:22:40 +0000 (18:22 -0400)]
Fix relative links in googlemock docs.

10 years agoMerge pull request #589 from nomis52/master
Billy Donahue [Thu, 17 Sep 2015 16:26:15 +0000 (12:26 -0400)]
Merge pull request #589 from nomis52/master

Fix the googlemock autotools build.

10 years agoFix the googlemock autotools build.
Simon Newton [Thu, 17 Sep 2015 15:33:43 +0000 (08:33 -0700)]
Fix the googlemock autotools build.

10 years agoMerge pull request #585 from orgads/warning-fix
Billy Donahue [Wed, 9 Sep 2015 13:19:40 +0000 (09:19 -0400)]
Merge pull request #585 from orgads/warning-fix

Fix unused static variable warning on Windows

10 years agoFix unused static variable warning on Windows
Orgad Shaneh [Wed, 9 Sep 2015 09:32:57 +0000 (12:32 +0300)]
Fix unused static variable warning on Windows

10 years agoInclude <memory> to use std::unique_ptr.
Billy Donahue [Tue, 8 Sep 2015 06:46:25 +0000 (02:46 -0400)]
Include <memory> to use std::unique_ptr.

10 years agoGooglemock has some tuples containing lvalue refs in its unit tests.
Billy Donahue [Tue, 8 Sep 2015 02:32:56 +0000 (22:32 -0400)]
Googlemock has some tuples containing lvalue refs in its unit tests.
These tuples are created with make_tuple, which is given temporaries.
The make_tuple is in a function argument list.

A possibly overzealous static_assert in libc++'s std::tuple ctor
is firing in our 'Perform(make_tuple("hi"))' calls, so
we can't use its make_tuple here. Instead we will use
explicitly-constructed tuples constructed from non-temporary strings.

Workaround for llvm bug:
    https://llvm.org/bugs/show_bug.cgi?id=20855

An alternative to https://github.com/google/googletest/pull/580 .