Merge branch 'master' of code.uocat.com:tqcq/sled
All checks were successful
linux-x64-gcc / linux-gcc (Debug) (push) Successful in 49s
linux-x64-gcc / linux-gcc (Release) (push) Successful in 52s
linux-mips64-gcc / linux-gcc-mips64el (push) Successful in 2m50s

This commit is contained in:
tqcq 2024-03-29 19:14:41 +08:00
commit 7dd4652964

View File

@ -71,7 +71,7 @@ Base64::Encode(const uint8_t *ptr, size_t len)
while (write_idx < encoded_length) { result[write_idx++] = '='; } while (write_idx < encoded_length) { result[write_idx++] = '='; }
// return ss.str(); // return ss.str();
return std::move(result); return result;
} }
StatusOr<std::string> StatusOr<std::string>