mirror of
https://codeberg.org/anoncontributorxmr/monero.git
synced 2024-11-22 15:32:24 +00:00
Improved (fixed?) serialization for vec<uint32_t>
This commit is contained in:
parent
f98c8abf42
commit
e344b9c734
1 changed files with 7 additions and 0 deletions
|
@ -16,6 +16,13 @@ namespace serialization
|
|||
return ::do_serialize(ar, e);
|
||||
}
|
||||
|
||||
template <typename Archive>
|
||||
bool serialize_vector_element(Archive& ar, uint32_t& e)
|
||||
{
|
||||
ar.serialize_varint(e);
|
||||
return true;
|
||||
}
|
||||
|
||||
template <typename Archive>
|
||||
bool serialize_vector_element(Archive& ar, uint64_t& e)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue