1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 22:47:47 +00:00

LibGfx: East-const-ify ICCProfile::pcs_illuminant()

This commit is contained in:
Nico Weber 2023-01-04 14:56:01 -05:00 committed by Andreas Kling
parent d5c8c90ff0
commit 34a21efef6

View file

@ -136,7 +136,7 @@ public:
time_t creation_timestamp() const { return m_creation_timestamp; }
Flags flags() const { return m_flags; }
RenderingIntent rendering_intent() const { return m_rendering_intent; }
const XYZ& pcs_illuminant() const { return m_pcs_illuminant; }
XYZ const& pcs_illuminant() const { return m_pcs_illuminant; }
Optional<Crypto::Hash::MD5::DigestType> const& id() const { return m_id; }
private: