LibGfx: Remove useless name from try_load_from_externally_owned_memory()

This commit is contained in:
Nico Weber 2023-01-04 15:03:39 -05:00 committed by Andreas Kling
parent 5d4ffd5580
commit 7080aac84f
Notes: sideshowbarker 2024-07-17 16:23:55 +09:00

View file

@ -124,7 +124,7 @@ struct XYZ {
class Profile : public RefCounted<Profile> { class Profile : public RefCounted<Profile> {
public: 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; } Version version() const { return m_version; }
DeviceClass device_class() const { return m_device_class; } DeviceClass device_class() const { return m_device_class; }