mirror of
				https://github.com/catchorg/Catch2.git
				synced 2025-10-31 20:27:11 +01:00 
			
		
		
		
	Finish fixing invalid compilation using MinGW
This commit is contained in:
		 Lyashenko Arsenii Maksimovich
					Lyashenko Arsenii Maksimovich
				
			
				
					committed by
					
						 Martin Hořeňovský
						Martin Hořeňovský
					
				
			
			
				
	
			
			
			 Martin Hořeňovský
						Martin Hořeňovský
					
				
			
						parent
						
							3a47b8b072
						
					
				
				
					commit
					021fcee636
				
			| @@ -49,7 +49,7 @@ namespace Catch { | ||||
|  | ||||
|  | ||||
|  | ||||
| #if defined(CATCH_PLATFORM_WINDOWS) | ||||
| #if defined(_MSC_VER) | ||||
|     TempFile::TempFile() { | ||||
|         if (tmpnam_s(m_buffer)) { | ||||
|             throw std::runtime_error("Could not get a temp filename"); | ||||
| @@ -77,7 +77,7 @@ namespace Catch { | ||||
|          std::fclose(m_file); | ||||
|          // We manually create the file on Windows only, on Linux | ||||
|          // it will be autodeleted | ||||
| #if defined(CATCH_PLATFORM_WINDOWS) | ||||
| #if defined(_MSC_VER) | ||||
|          std::remove(m_buffer); | ||||
| #endif | ||||
|     } | ||||
| @@ -125,7 +125,7 @@ namespace Catch { | ||||
|  | ||||
| } // namespace Catch | ||||
|  | ||||
| #if defined(CATCH_PLATFORM_WINDOWS) | ||||
| #if defined(_MSC_VER) | ||||
| #undef dup | ||||
| #undef dup2 | ||||
| #undef fileno | ||||
|   | ||||
		Reference in New Issue
	
	Block a user