mirror of
https://github.com/monero-project/monero.git
synced 2024-10-01 11:49:47 -04:00
serialization: add override for serializing bool
This commit is contained in:
parent
dbb5f2d6a3
commit
1e8d37e7d8
@ -102,6 +102,12 @@ inline bool do_serialize(Archive &ar, T &v)
|
||||
{
|
||||
return ::serializer<Archive, T>::serialize(ar, v);
|
||||
}
|
||||
template <class Archive>
|
||||
inline bool do_serialize(Archive &ar, bool &v)
|
||||
{
|
||||
ar.serialize_blob(&v, sizeof(v));
|
||||
return true;
|
||||
}
|
||||
|
||||
// Never used in the code base
|
||||
// #ifndef __GNUC__
|
||||
|
Loading…
Reference in New Issue
Block a user