summaryrefslogtreecommitdiff
path: root/Kernel/KString.h
diff options
context:
space:
mode:
Diffstat (limited to 'Kernel/KString.h')
-rw-r--r--Kernel/KString.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/KString.h b/Kernel/KString.h
index 2f157dfbec..0a06e5478b 100644
--- a/Kernel/KString.h
+++ b/Kernel/KString.h
@@ -23,7 +23,7 @@ public:
void operator delete(void*);
- [[nodiscard]] KResultOr<NonnullOwnPtr<KString>> try_clone() const;
+ KResultOr<NonnullOwnPtr<KString>> try_clone() const;
[[nodiscard]] bool is_empty() const { return m_length == 0; }
[[nodiscard]] size_t length() const { return m_length; }