Merge branch 'master' into release

Change-Id: I1301beacba87281b5818eb5e3f54525919158918
This commit is contained in:
Alexey Polyudov
2020-08-25 11:34:15 -07:00
110 changed files with 4758 additions and 1245 deletions
+1 -1
View File
@@ -88,7 +88,7 @@ class ByteArray {
// Moves string out of temporary ByteArray, allowing for a zero-copy
// operation.
explicit operator std::string() const&& { return std::move(data_); }
explicit operator std::string() && { return std::move(data_); }
private:
std::string data_;