adding ignore rules, finished container support

This commit is contained in:
Shane Grant
2013-06-14 14:36:54 -07:00
parent b50e0d6b2c
commit 156704dfe0
5 changed files with 143 additions and 3 deletions

View File

@@ -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 )
{