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.
			
			
This commit is contained in:
		@@ -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)) {}
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -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
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -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"
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user