Browse Source

重新提交

pull/556/head
dajunli 4 years ago
parent
commit
7616370cdf
1 changed files with 4 additions and 3 deletions
  1. +4
    -3
      ge/common/base64.h

+ 4
- 3
ge/common/base64.h View File

@@ -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;


Loading…
Cancel
Save