libt2n: (reinhard) compile fixes.
[libt2n] / src / container.cpp
index a3c9f31..47d0e49 100644 (file)
@@ -32,17 +32,6 @@ BOOST_CLASS_EXPORT(libt2n::command_container)
 namespace libt2n
 {
 
-template<class Archive>
-void result_container::serialize(Archive & ar, const unsigned int /* version */)
-{
-    // When the class Archive corresponds to an output archive, the
-    // & operator is defined similar to <<.  Likewise, when the class Archive
-    // is a type of input archive the & operator is defined similar to >>.
-
-    ar & BOOST_SERIALIZATION_NVP(result_type);
-    ar & BOOST_SERIALIZATION_NVP(res);
-    ar & BOOST_SERIALIZATION_NVP(ex);
-}
 
 /// deletes the carried result or exception objects
 result_container::~result_container()
@@ -63,12 +52,6 @@ result* result_container::get_result(void)
     return res;
 }
 
-template<class Archive>
-void command_container::serialize(Archive & ar, const unsigned int /* version */)
-{
-    ar & BOOST_SERIALIZATION_NVP(cmd);
-}
-
 /// deletes the carried command
 command_container::~command_container()
 {