Fix or condition typo ( '|' -> '||' )
This commit is contained in:
		
							parent
							
								
									824055a10e
								
							
						
					
					
						commit
						5d3798f782
					
				@ -2395,7 +2395,7 @@ inline int Close(int fd) { return close(fd); }
 | 
				
			|||||||
inline const char* StrError(int errnum) { return strerror(errnum); }
 | 
					inline const char* StrError(int errnum) { return strerror(errnum); }
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
inline const char* GetEnv(const char* name) {
 | 
					inline const char* GetEnv(const char* name) {
 | 
				
			||||||
#if GTEST_OS_WINDOWS_MOBILE || GTEST_OS_WINDOWS_PHONE | GTEST_OS_WINDOWS_RT
 | 
					#if GTEST_OS_WINDOWS_MOBILE || GTEST_OS_WINDOWS_PHONE || GTEST_OS_WINDOWS_RT
 | 
				
			||||||
  // We are on Windows CE, which has no environment variables.
 | 
					  // We are on Windows CE, which has no environment variables.
 | 
				
			||||||
  static_cast<void>(name);  // To prevent 'unused argument' warning.
 | 
					  static_cast<void>(name);  // To prevent 'unused argument' warning.
 | 
				
			||||||
  return NULL;
 | 
					  return NULL;
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user