7
mirror of https://gitlab.com/kicad/code/kicad.git synced 2025-04-11 14:50:11 +00:00

LAYER_PAIR doesn't need a comparison

This upsets the Windows build and isn't needed as there's no
container used that needs the operator.
This commit is contained in:
John Beard 2024-08-07 06:12:12 +08:00
parent 371a1b711f
commit 0c3ac40bb6

View File

@ -287,8 +287,6 @@ public:
|| ( m_layerA == aOther.m_layerB && m_layerB == aOther.m_layerA );
}
bool operator<=> ( const LAYER_PAIR& aOther ) const = default;
private:
PCB_LAYER_ID m_layerA;
PCB_LAYER_ID m_layerB;