RE-Doing the merge, this time with gcc on mac in the PR so I can catch errors before merging the PR
This commit is contained in:
		@@ -33,6 +33,15 @@
 | 
			
		||||
//
 | 
			
		||||
// This file tests the built-in actions.
 | 
			
		||||
 | 
			
		||||
// Silence C4800 (C4800: 'int *const ': forcing value
 | 
			
		||||
// to bool 'true' or 'false') for MSVC 14,15
 | 
			
		||||
#ifdef _MSC_VER
 | 
			
		||||
#if _MSC_VER <= 1900
 | 
			
		||||
#  pragma warning(push)
 | 
			
		||||
#  pragma warning(disable:4800)
 | 
			
		||||
#endif
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#include "gmock/gmock-actions.h"
 | 
			
		||||
#include <algorithm>
 | 
			
		||||
#include <iterator>
 | 
			
		||||
@@ -1556,3 +1565,10 @@ TEST(MoveOnlyArgumentsTest, ReturningActions) {
 | 
			
		||||
#endif  // GTEST_LANG_CXX11
 | 
			
		||||
 | 
			
		||||
}  // Unnamed namespace
 | 
			
		||||
 | 
			
		||||
#ifdef _MSC_VER
 | 
			
		||||
#if _MSC_VER == 1900
 | 
			
		||||
#  pragma warning(pop)
 | 
			
		||||
#endif
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user