mirror of
				https://github.com/catchorg/Catch2.git
				synced 2025-10-31 20:27:11 +01:00 
			
		
		
		
	Fix missing parameter for comparisons between long and unsigned X.
This commit is contained in:
		| @@ -160,15 +160,15 @@ namespace Internal | ||||
|     // long to unsigned X | ||||
|     template<Operator Op> bool compare( long lhs, unsigned int rhs ) | ||||
|     { | ||||
|         return applyEvaluator<Op>( static_cast<unsigned long>( lhs ) ); | ||||
|         return applyEvaluator<Op>( static_cast<unsigned long>( lhs ), rhs ); | ||||
|     } | ||||
|     template<Operator Op> bool compare( long lhs, unsigned long rhs ) | ||||
|     { | ||||
|         return applyEvaluator<Op>( static_cast<unsigned long>( lhs ) ); | ||||
|         return applyEvaluator<Op>( static_cast<unsigned long>( lhs ), rhs ); | ||||
|     } | ||||
|     template<Operator Op> bool compare( long lhs, unsigned char rhs ) | ||||
|     { | ||||
|         return applyEvaluator<Op>( static_cast<unsigned long>( lhs ) ); | ||||
|         return applyEvaluator<Op>( static_cast<unsigned long>( lhs ), rhs ); | ||||
|     } | ||||
|  | ||||
|     template<Operator Op, typename T> | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Jardel Weyrich
					Jardel Weyrich