diff options
author | chriseth <c@ethdev.com> | 2015-06-01 18:32:59 +0800 |
---|---|---|
committer | chriseth <c@ethdev.com> | 2015-06-05 23:34:26 +0800 |
commit | 9efd5374ed5d3e2c5abf6d85907e1e3ac5ce5b32 (patch) | |
tree | 090d80e157083121e5df163acc4dd8ba44635255 /CompilerStack.h | |
parent | 4987eec3d1e87868e091850d31af58e054ab5ee5 (diff) | |
download | dexon-solidity-9efd5374ed5d3e2c5abf6d85907e1e3ac5ce5b32.tar.gz dexon-solidity-9efd5374ed5d3e2c5abf6d85907e1e3ac5ce5b32.tar.zst dexon-solidity-9efd5374ed5d3e2c5abf6d85907e1e3ac5ce5b32.zip |
Compute constants
Diffstat (limited to 'CompilerStack.h')
-rw-r--r-- | CompilerStack.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CompilerStack.h b/CompilerStack.h index 6be45aec..a7c6ea3b 100644 --- a/CompilerStack.h +++ b/CompilerStack.h @@ -90,7 +90,7 @@ public: std::string defaultContractName() const; /// Compiles the source units that were previously added and parsed. - void compile(bool _optimize = false); + void compile(bool _optimize = false, unsigned _runs = 200); /// Parses and compiles the given source code. /// @returns the compiled bytecode bytes const& compile(std::string const& _sourceCode, bool _optimize = false); |