Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
googletest
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Chen Yisong
googletest
Commits
7c2bd3af
Commit
7c2bd3af
authored
Sep 07, 2019
by
Krystian Kuzniarek
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
square away the stuff that hasn't been merged in a manual review
This fixes up
ab8f346b
(a manual merge) that has abandoned some things from PR #2395.
parent
f2fb48c3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
5 deletions
+2
-5
gmock-matchers.h
googlemock/include/gmock/gmock-matchers.h
+2
-2
gmock-internal-utils.h
googlemock/include/gmock/internal/gmock-internal-utils.h
+0
-2
gmock-internal-utils_test.cc
googlemock/test/gmock-internal-utils_test.cc
+0
-1
No files found.
googlemock/include/gmock/gmock-matchers.h
View file @
7c2bd3af
...
@@ -1607,8 +1607,8 @@ class PointeeMatcher {
...
@@ -1607,8 +1607,8 @@ class PointeeMatcher {
template
<
typename
Pointer
>
template
<
typename
Pointer
>
class
Impl
:
public
MatcherInterface
<
Pointer
>
{
class
Impl
:
public
MatcherInterface
<
Pointer
>
{
public
:
public
:
typedef
typename
PointeeOf
<
typename
std
::
remove_const
<
typedef
typename
PointeeOf
<
GTEST_REMOVE_REFERENCE_AND_CONST_
(
Pointer
)
>::
type
typename
std
::
remove_reference
<
Pointer
>::
type
>::
type
>::
type
Pointee
;
Pointee
;
explicit
Impl
(
const
InnerMatcher
&
matcher
)
explicit
Impl
(
const
InnerMatcher
&
matcher
)
:
matcher_
(
MatcherCast
<
const
Pointee
&>
(
matcher
))
{}
:
matcher_
(
MatcherCast
<
const
Pointee
&>
(
matcher
))
{}
...
...
googlemock/include/gmock/internal/gmock-internal-utils.h
View file @
7c2bd3af
...
@@ -334,8 +334,6 @@ class WithoutMatchers {
...
@@ -334,8 +334,6 @@ class WithoutMatchers {
// Internal use only: access the singleton instance of WithoutMatchers.
// Internal use only: access the singleton instance of WithoutMatchers.
GTEST_API_
WithoutMatchers
GetWithoutMatchers
();
GTEST_API_
WithoutMatchers
GetWithoutMatchers
();
// Type traits.
// Disable MSVC warnings for infinite recursion, since in this case the
// Disable MSVC warnings for infinite recursion, since in this case the
// the recursion is unreachable.
// the recursion is unreachable.
#ifdef _MSC_VER
#ifdef _MSC_VER
...
...
googlemock/test/gmock-internal-utils_test.cc
View file @
7c2bd3af
...
@@ -40,7 +40,6 @@
...
@@ -40,7 +40,6 @@
#include <memory>
#include <memory>
#include <sstream>
#include <sstream>
#include <string>
#include <string>
#include <type_traits>
#include <vector>
#include <vector>
#include "gmock/gmock.h"
#include "gmock/gmock.h"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment