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
commit c431cf4907
Notes: sideshowbarker 2024-07-17 10:08:28 +09:00

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> {