diff options
author | Othmar Gsenger <otti@anytun.org> | 2007-12-11 12:31:46 +0000 |
---|---|---|
committer | Othmar Gsenger <otti@anytun.org> | 2007-12-11 12:31:46 +0000 |
commit | 62c5dcfa2dd117fd7b388d13ab8f33c5867a9636 (patch) | |
tree | ae84f36ab1a51a83c799cb062621e7f403e7051e /syncBuffer.h | |
parent | fixes in mpi class, keyderivation iv generation (diff) |
fixed many sync things
fixed warning (multiple key)
Diffstat (limited to 'syncBuffer.h')
-rw-r--r-- | syncBuffer.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/syncBuffer.h b/syncBuffer.h index 1d4fc9f..222c197 100644 --- a/syncBuffer.h +++ b/syncBuffer.h @@ -45,7 +45,11 @@ public: private: friend class boost::serialization::access; template<class Archive> - void serialize(Archive & ar, const unsigned int version); + void serialize(Archive & ar, const unsigned int version) + { + ar & length_; + ar & buf_; + } }; #endif |