]> git-server-git.apps.pok.os.sepia.ceph.com Git - googletest.git/log
googletest.git
10 years agoUpdate DevGuide.md BillyDonahue-patch-1
Billy Donahue [Thu, 8 Oct 2015 13:32:40 +0000 (09:32 -0400)]
Update DevGuide.md

stop talking about subversion in the devguide.

10 years agoMerge pull request #604 from marco-m/urls-should-go-to-github
Billy Donahue [Sun, 4 Oct 2015 16:41:40 +0000 (12:41 -0400)]
Merge pull request #604 from marco-m/urls-should-go-to-github

Fix URLs in documentation (point to github, relative links)

10 years agoFix relative links in documentation
Marco Molteni [Sun, 4 Oct 2015 16:25:25 +0000 (18:25 +0200)]
Fix relative links in documentation

10 years agoUpdate URLs from googlecode to github
Marco Molteni [Sun, 4 Oct 2015 16:07:30 +0000 (18:07 +0200)]
Update URLs from googlecode to github

10 years agoMerge pull request #597 from marco-m/patch-1
Billy Donahue [Wed, 23 Sep 2015 21:58:44 +0000 (17:58 -0400)]
Merge pull request #597 from marco-m/patch-1

Fix broken link to FrequentlyAskedQuestions

10 years agoFix broken link to FrequentlyAskedQuestions
Marco Molteni [Wed, 23 Sep 2015 19:08:21 +0000 (21:08 +0200)]
Fix broken link to FrequentlyAskedQuestions

10 years agoMerge pull request #594 from martinmaly/gmock
Billy Donahue [Sun, 20 Sep 2015 07:44:08 +0000 (03:44 -0400)]
Merge pull request #594 from martinmaly/gmock

Adding missing files to googlemock distribution.

10 years agoMerge pull request #593 from martinmaly/distcheck
Billy Donahue [Sun, 20 Sep 2015 07:23:53 +0000 (03:23 -0400)]
Merge pull request #593 from martinmaly/distcheck

Adding missing header files to the distribution.

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 agoAdding missing header files to the distribution.
Martin Maly [Sun, 20 Sep 2015 04:45:10 +0000 (21:45 -0700)]
Adding missing header files to the 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 .