mirror of
https://github.com/catchorg/Catch2.git
synced 2025-11-07 18:41:56 +01:00
Removed special handling for pointer comparisons
These all seem to be handled by the general case now
This commit is contained in:
@@ -36,23 +36,6 @@ public:
|
||||
return expr;
|
||||
}
|
||||
|
||||
Expression<const char*> operator->* ( const char* const& operand ) {
|
||||
Expression<const char*> expr( m_result, operand );
|
||||
return expr;
|
||||
}
|
||||
|
||||
template<typename T>
|
||||
PtrExpression<T> operator->* ( const T* operand ) {
|
||||
PtrExpression<T> expr( m_result, operand );
|
||||
return expr;
|
||||
}
|
||||
|
||||
template<typename T>
|
||||
PtrExpression<T> operator->* ( T* operand ) {
|
||||
PtrExpression<T> expr( m_result, operand );
|
||||
return expr;
|
||||
}
|
||||
|
||||
Expression<bool> operator->* ( bool value ) {
|
||||
Expression<bool> expr( m_result, value );
|
||||
return expr;
|
||||
|
||||
Reference in New Issue
Block a user