Remove unneeded != operator

C++20 defines these implicitly
This commit is contained in:
Seth Hillbrand 2024-05-31 13:29:34 -07:00
parent e83ca5e91d
commit c6499cf5db
1 changed files with 0 additions and 1 deletions

View File

@ -821,7 +821,6 @@ public:
double Similarity( const BOARD_ITEM& aOther ) const override;
bool operator==( const BOARD_ITEM& aOther ) const override;
bool operator!=( const BOARD_ITEM& aOther ) const { return !operator==( aOther ); }
#if defined(DEBUG)
virtual void Show( int nestLevel, std::ostream& os ) const override { ShowDummy( os ); }