removed close for ofstream

This commit is contained in:
Liana Husikyan 2015-08-10 13:09:10 +02:00
parent e946840b19
commit f61107c1c9

View File

@ -307,7 +307,6 @@ void CommandLineInterface::createFile(string const& _fileName, string const& _da
outFile << _data;
if (!outFile)
BOOST_THROW_EXCEPTION(FileError() << errinfo_comment("Could not write to file: " + _fileName));
outFile.close();
}
bool CommandLineInterface::parseArguments(int _argc, char** _argv)