Added a few missing explicit instantiations
This commit is contained in:
parent
7d15b1ed5a
commit
acb69193d8
1 changed files with 9 additions and 2 deletions
|
|
@ -1238,17 +1238,24 @@ void serialize(Archive& ar, long unsigned int& integer,
|
||||||
|
|
||||||
BOOST_CLASS_EXPORT(ledger::annotated_commodity_t)
|
BOOST_CLASS_EXPORT(ledger::annotated_commodity_t)
|
||||||
|
|
||||||
|
template void boost::serialization::serialize(boost::archive::binary_iarchive&,
|
||||||
|
MP_INT&, const unsigned int);
|
||||||
template void boost::serialization::serialize(boost::archive::binary_oarchive&,
|
template void boost::serialization::serialize(boost::archive::binary_oarchive&,
|
||||||
MP_INT&, const unsigned int);
|
MP_INT&, const unsigned int);
|
||||||
template void boost::serialization::serialize(boost::archive::binary_iarchive&,
|
template void boost::serialization::serialize(boost::archive::binary_iarchive&,
|
||||||
MP_RAT&, const unsigned int);
|
MP_RAT&, const unsigned int);
|
||||||
|
template void boost::serialization::serialize(boost::archive::binary_oarchive&,
|
||||||
|
MP_RAT&, const unsigned int);
|
||||||
template void boost::serialization::serialize(boost::archive::binary_iarchive&,
|
template void boost::serialization::serialize(boost::archive::binary_iarchive&,
|
||||||
long unsigned int&,
|
long unsigned int&,
|
||||||
const unsigned int);
|
const unsigned int);
|
||||||
|
template void boost::serialization::serialize(boost::archive::binary_oarchive&,
|
||||||
template void ledger::amount_t::serialize(boost::archive::binary_oarchive&,
|
long unsigned int&,
|
||||||
const unsigned int);
|
const unsigned int);
|
||||||
|
|
||||||
template void ledger::amount_t::serialize(boost::archive::binary_iarchive&,
|
template void ledger::amount_t::serialize(boost::archive::binary_iarchive&,
|
||||||
const unsigned int);
|
const unsigned int);
|
||||||
|
template void ledger::amount_t::serialize(boost::archive::binary_oarchive&,
|
||||||
|
const unsigned int);
|
||||||
|
|
||||||
#endif // HAVE_BOOST_SERIALIZATION
|
#endif // HAVE_BOOST_SERIALIZATION
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue