aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLiana Husikyan <liana@ethdev.com>2015-08-10 19:09:10 +0800
committerLiana Husikyan <liana@ethdev.com>2015-08-10 19:09:10 +0800
commitf61107c1c9fccd7a4bededcf880b26644816737f (patch)
tree22df2f0be6a7170d0978681adf6193f73b63a61c
parente946840b198d3756134b9d4f4ec832b300ba0256 (diff)
downloaddexon-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.cpp1
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)