diff options
Diffstat (limited to 'AK/UUID.h')
-rw-r--r-- | AK/UUID.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -17,7 +17,7 @@ class UUID { public: UUID() = default; UUID(Array<u8, 16> uuid_buffer); - UUID(const StringView&); + UUID(StringView); ~UUID() = default; bool operator==(const UUID&) const; @@ -31,7 +31,7 @@ public: bool is_zero() const; private: - void convert_string_view_to_uuid(const StringView&); + void convert_string_view_to_uuid(StringView); Array<u8, 16> m_uuid_buffer {}; }; |