remove extra semicolon

release/4.3a0
Varun Agrawal 2020-06-11 10:58:44 -05:00
parent 686b0effbf
commit 8a9ade0025
1 changed files with 1 additions and 1 deletions

View File

@ -108,7 +108,7 @@ bool serializeToXMLFile(const T& input, const std::string& filename, const std::
return false;
{
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();
return true;