mirror of
https://github.com/catchorg/Catch2.git
synced 2025-08-04 06:15:41 +02:00
Merge pull request #79 from jweyrich/master
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>
|
||||
|
@@ -1265,15 +1265,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