1
0
Fork 0
mirror of https://github.com/ton-blockchain/ton synced 2025-03-09 15:40:10 +00:00

validator large state serialization bugfix + tdlib update for clients

This commit is contained in:
ton 2021-01-07 22:48:04 +03:00
parent dab7ee3f97
commit 24dc184a2e
10 changed files with 118 additions and 22 deletions

View file

@ -40,7 +40,7 @@ class As {
}
~As() = default;
As &operator=(T new_value) && {
As &operator=(const T &new_value) && {
std::memcpy(ptr_, &new_value, sizeof(T));
return *this;
}