LibGfx: Add comparison operators to CMYK

This commit is contained in:
Nico Weber 2024-01-25 11:40:24 -05:00 committed by Andreas Kling
parent ba8f4e73bf
commit c431cf4907

View file

@ -19,6 +19,8 @@ struct CMYK {
u8 m;
u8 y;
u8 k;
int operator<=>(CMYK const&) const = default;
};
class CMYKBitmap : public RefCounted<CMYKBitmap> {