summaryrefslogtreecommitdiff
path: root/AK/Base64.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/Base64.h
parentad5d217e760c7fb73ffc0c4c827d767d6be8ec80 (diff)
downloadserenity-8b1108e4858f797c9216dc8ae4a3918ad50c73b4.zip
Everywhere: Pass AK::StringView by value
Diffstat (limited to 'AK/Base64.h')
-rw-r--r--AK/Base64.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/AK/Base64.h b/AK/Base64.h
index c1c5388629..d4c6de40f8 100644
--- a/AK/Base64.h
+++ b/AK/Base64.h
@@ -13,11 +13,11 @@
namespace AK {
-size_t calculate_base64_decoded_length(const StringView&);
+size_t calculate_base64_decoded_length(StringView);
size_t calculate_base64_encoded_length(ReadonlyBytes);
-Optional<ByteBuffer> decode_base64(const StringView&);
+Optional<ByteBuffer> decode_base64(StringView);
String encode_base64(ReadonlyBytes);