mirror of
https://codeberg.org/anoncontributorxmr/monero.git
synced 2024-11-23 10:37:37 -07:00
Merge pull request #8 from NoodleDoodleNoodleDoodleNoodleDoodleNoo/patch-5
Update serialization.h
This commit is contained in:
commit
5c820f902b
@ -93,7 +93,12 @@ inline bool do_serialize(Archive &ar, T &v)
|
||||
ar.serialize_varint(f); \
|
||||
if (!ar.stream().good()) return false; \
|
||||
} while(0);
|
||||
|
||||
#define VARINT_FIELD_N(t, f) \
|
||||
do { \
|
||||
ar.tag(t); \
|
||||
ar.serialize_varint(f); \
|
||||
if (!ar.stream().good()) return false; \
|
||||
} while(0);
|
||||
namespace serialization {
|
||||
namespace detail
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user