mirror of
https://github.com/USCiLab/cereal.git
synced 2025-10-18 01:45:52 +02:00
adding ignore rules, finished container support
This commit is contained in:
@@ -6,7 +6,7 @@
|
||||
|
||||
namespace cereal
|
||||
{
|
||||
//! Saving for std::list all other types to binary
|
||||
//! Saving for std::list to binary
|
||||
template <class T, class A>
|
||||
void save( BinaryOutputArchive & ar, std::list<T, A> const & list )
|
||||
{
|
||||
@@ -16,7 +16,7 @@ namespace cereal
|
||||
ar & i;
|
||||
}
|
||||
|
||||
//! Loading for std::list all other types to binary
|
||||
//! Loading for std::list to binary
|
||||
template <class T, class A>
|
||||
void load( BinaryInputArchive & ar, std::list<T, A> & list )
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user