diff options
author | Liana Husikyan <liana@ethdev.com> | 2015-08-10 19:09:10 +0800 |
---|---|---|
committer | Liana Husikyan <liana@ethdev.com> | 2015-08-10 19:09:10 +0800 |
commit | f61107c1c9fccd7a4bededcf880b26644816737f (patch) | |
tree | 22df2f0be6a7170d0978681adf6193f73b63a61c | |
parent | e946840b198d3756134b9d4f4ec832b300ba0256 (diff) | |
download | dexon-solidity-f61107c1c9fccd7a4bededcf880b26644816737f.tar dexon-solidity-f61107c1c9fccd7a4bededcf880b26644816737f.tar.gz dexon-solidity-f61107c1c9fccd7a4bededcf880b26644816737f.tar.bz2 dexon-solidity-f61107c1c9fccd7a4bededcf880b26644816737f.tar.lz dexon-solidity-f61107c1c9fccd7a4bededcf880b26644816737f.tar.xz dexon-solidity-f61107c1c9fccd7a4bededcf880b26644816737f.tar.zst dexon-solidity-f61107c1c9fccd7a4bededcf880b26644816737f.zip |
removed close for ofstream
-rw-r--r-- | CommandLineInterface.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/CommandLineInterface.cpp b/CommandLineInterface.cpp index e9c9c256..ff70616a 100644 --- a/CommandLineInterface.cpp +++ b/CommandLineInterface.cpp @@ -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) |