remove extra semicolon
parent
686b0effbf
commit
8a9ade0025
|
|
@ -108,7 +108,7 @@ bool serializeToXMLFile(const T& input, const std::string& filename, const std::
|
||||||
return false;
|
return false;
|
||||||
{
|
{
|
||||||
boost::archive::xml_oarchive out_archive(out_archive_stream);
|
boost::archive::xml_oarchive out_archive(out_archive_stream);
|
||||||
out_archive << boost::serialization::make_nvp(name.c_str(), input);;
|
out_archive << boost::serialization::make_nvp(name.c_str(), input);
|
||||||
}
|
}
|
||||||
out_archive_stream.close();
|
out_archive_stream.close();
|
||||||
return true;
|
return true;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue