Fix the build

Change-Id: Ied63786e8f73cec805123031c26886295f086691
Signed-off-by: Alexey Polyudov <apolyudov@google.com>
This commit is contained in:
Alexey Polyudov
2020-04-06 10:20:15 -07:00
parent fef714be4e
commit 5aaab9a4c0
5 changed files with 7 additions and 17 deletions
+1 -1
View File
@@ -49,7 +49,7 @@ ByteArray Base64Utils::decode(absl::string_view base64_string) {
return ByteArray(decoded_string);
}
Ptr<ByteArray> Base64Utils::decode(const std::string& base64_string) {
Ptr<ByteArray> Base64Utils::decode(absl::string_view base64_string) {
return decode<Ptr<ByteArray>>(base64_string);
}