summaryrefslogtreecommitdiff
path: root/AK/UUID.h
diff options
context:
space:
mode:
Diffstat (limited to 'AK/UUID.h')
-rw-r--r--AK/UUID.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/AK/UUID.h b/AK/UUID.h
index fba7da8bdd..3d69414346 100644
--- a/AK/UUID.h
+++ b/AK/UUID.h
@@ -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 {};
};