mirror of
https://codeberg.org/anoncontributorxmr/monero.git
synced 2024-11-12 22:23:28 +01:00
serialization: declare do_serialize specializations before use
This lets my gcc picks those instead of the generic template where appropriate (and then fail since std::vector<something> does not have a serialize method.
This commit is contained in:
parent
8b135e7aa3
commit
0ff8305426
@ -32,6 +32,11 @@
|
||||
|
||||
#include "serialization.h"
|
||||
|
||||
template <template <bool> class Archive, class T>
|
||||
bool do_serialize(Archive<false> &ar, std::vector<T> &v);
|
||||
template <template <bool> class Archive, class T>
|
||||
bool do_serialize(Archive<true> &ar, std::vector<T> &v);
|
||||
|
||||
namespace serialization
|
||||
{
|
||||
namespace detail
|
||||
|
Loading…
Reference in New Issue
Block a user