From 7616370cdf143b9d5672f38aa26c4a66d6a096a5 Mon Sep 17 00:00:00 2001 From: dajunli Date: Wed, 9 Dec 2020 10:29:53 +0800 Subject: [PATCH] =?UTF-8?q?=E9=87=8D=E6=96=B0=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ge/common/base64.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/ge/common/base64.h b/ge/common/base64.h index bc1476ab..59661569 100644 --- a/ge/common/base64.h +++ b/ge/common/base64.h @@ -25,9 +25,10 @@ namespace ge { namespace { -const string kBase64Chars("ABCDEFGHIJKLMNOPQRSTUVWXYZ" - "abcdefghijklmnopqrstuvwxyz" - "0123456789+/"); +const std::string kBase64Chars = + "ABCDEFGHIJKLMNOPQRSTUVWXYZ" + "abcdefghijklmnopqrstuvwxyz" + "0123456789+/"; const char kEqualSymbol = '='; const size_t kBase64CharsNum = 64; const size_t kThreeByteOneGroup = 3;