diff options
author | Nico Weber <thakis@chromium.org> | 2023-01-04 15:03:39 -0500 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2023-01-05 10:54:35 +0100 |
commit | 7080aac84f82840735fad45b357dd2e1960e0564 (patch) | |
tree | 82003848904a30b4e208983f1b7aa20d8fd71c30 | |
parent | 5d4ffd55800fd2f48a717b5aa4f94bce8668532d (diff) | |
download | serenity-7080aac84f82840735fad45b357dd2e1960e0564.zip |
LibGfx: Remove useless name from try_load_from_externally_owned_memory()
-rw-r--r-- | Userland/Libraries/LibGfx/ICCProfile.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibGfx/ICCProfile.h b/Userland/Libraries/LibGfx/ICCProfile.h index f5cd556816..2d85bd4dcd 100644 --- a/Userland/Libraries/LibGfx/ICCProfile.h +++ b/Userland/Libraries/LibGfx/ICCProfile.h @@ -124,7 +124,7 @@ struct XYZ { class Profile : public RefCounted<Profile> { public: - static ErrorOr<NonnullRefPtr<Profile>> try_load_from_externally_owned_memory(ReadonlyBytes bytes); + static ErrorOr<NonnullRefPtr<Profile>> try_load_from_externally_owned_memory(ReadonlyBytes); Version version() const { return m_version; } DeviceClass device_class() const { return m_device_class; } |