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

LibPDF: Make DeviceCMYKColorSpace::the() fallible

No behavior change.
This commit is contained in:
Nico Weber 2024-01-30 20:59:50 -05:00 committed by Andrew Kaster
parent 79b73b7fbb
commit f840fb6b4e
3 changed files with 5 additions and 5 deletions

View file

@ -112,7 +112,7 @@ private:
class DeviceCMYKColorSpace final : public ColorSpace {
public:
static NonnullRefPtr<DeviceCMYKColorSpace> the();
static ErrorOr<NonnullRefPtr<DeviceCMYKColorSpace>> the();
~DeviceCMYKColorSpace() override = default;