mirror of
				https://github.com/catchorg/Catch2.git
				synced 2025-10-31 04:07:10 +01:00 
			
		
		
		
	Fix -Wdefaulted-function-deleted warning
Clang8 warns catch_interfaces_reporter.h:84:25: error: explicitly defaulted move assignment operator is implicitly deleted [-Werror,-Wdefaulted-function-deleted] | AssertionStats& operator = ( AssertionStats && ) = default; | ^ Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
		 Khem Raj
					Khem Raj
				
			
				
					committed by
					
						 Martin Hořeňovský
						Martin Hořeňovský
					
				
			
			
				
	
			
			
			 Martin Hořeňovský
						Martin Hořeňovský
					
				
			
						parent
						
							2bd0722470
						
					
				
				
					commit
					e8bfd882e8
				
			| @@ -80,8 +80,8 @@ namespace Catch { | ||||
|  | ||||
|         AssertionStats( AssertionStats const& )              = default; | ||||
|         AssertionStats( AssertionStats && )                  = default; | ||||
|         AssertionStats& operator = ( AssertionStats const& ) = default; | ||||
|         AssertionStats& operator = ( AssertionStats && )     = default; | ||||
|         AssertionStats& operator = ( AssertionStats const& ) = delete; | ||||
|         AssertionStats& operator = ( AssertionStats && )     = delete; | ||||
|         virtual ~AssertionStats(); | ||||
|  | ||||
|         AssertionResult assertionResult; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user