summaryrefslogtreecommitdiff
path: root/AK/Demangle.h
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2021-11-11 00:55:02 +0100
committerAndreas Kling <kling@serenityos.org>2021-11-11 01:27:46 +0100
commit8b1108e4858f797c9216dc8ae4a3918ad50c73b4 (patch)
treeca64ba25aa735d25013d76c6d83570496c742014 /AK/Demangle.h
parentad5d217e760c7fb73ffc0c4c827d767d6be8ec80 (diff)
downloadserenity-8b1108e4858f797c9216dc8ae4a3918ad50c73b4.zip
Everywhere: Pass AK::StringView by value
Diffstat (limited to 'AK/Demangle.h')
-rw-r--r--AK/Demangle.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/AK/Demangle.h b/AK/Demangle.h
index 9e41dc949c..c04df9e674 100644
--- a/AK/Demangle.h
+++ b/AK/Demangle.h
@@ -12,7 +12,7 @@
namespace AK {
-inline String demangle(const StringView& name)
+inline String demangle(StringView name)
{
int status = 0;
auto* demangled_name = abi::__cxa_demangle(name.to_string().characters(), nullptr, nullptr, &status);