serialization: add override for serializing bool

This commit is contained in:
moneromooo-monero
2016-07-02 23:29:34 +01:00
parent dbb5f2d6a3
commit 1e8d37e7d8

View File

@@ -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__