Removed stray code

This commit is contained in:
Phil Nash 2017-02-23 08:10:16 +00:00
parent 72b72ca937
commit e058a37614
1 changed files with 0 additions and 9 deletions

View File

@ -248,15 +248,6 @@ TEST_CASE( "Comparisons between unsigned ints and negative signed ints match c++
CHECK( minInt > 2u );
}
template<typename T>
struct Ex
{
Ex( T ){}
bool operator == ( const T& ) const { return true; }
T operator * ( const T& ) const { return T(); }
};
TEST_CASE( "Comparisons between ints where one side is computed", "" )
{
CHECK( 54 == 6*9 );