mirror of
https://github.com/USCiLab/cereal.git
synced 2025-10-18 01:45:52 +02:00
removing extra non const versions of save
This commit is contained in:
@@ -16,16 +16,6 @@ namespace cereal
|
||||
ar & i;
|
||||
}
|
||||
|
||||
//! Loading for std::deque all other types from binary (non-const version)
|
||||
template <class T, class A>
|
||||
void save( BinaryOutputArchive & ar, std::deque<T, A> & deque )
|
||||
{
|
||||
ar & deque.size();
|
||||
|
||||
for( auto & i : deque )
|
||||
ar & i;
|
||||
}
|
||||
|
||||
//! Loading for std::deque all other types to binary
|
||||
template <class T, class A>
|
||||
void load( BinaryInputArchive & ar, std::deque<T, A> & deque )
|
||||
|
||||
Reference in New Issue
Block a user