diff options
author | Lefteris Karapetsas <lefteris@refu.co> | 2014-12-02 18:03:34 +0800 |
---|---|---|
committer | Lefteris Karapetsas <lefteris@refu.co> | 2014-12-02 18:03:34 +0800 |
commit | 0cc271fae9101ac27dad3491020a3b599d533254 (patch) | |
tree | b7d104326ae7498bb663d20c764ee7e6f237df8c /main.cpp | |
parent | 7dbfde91e39dbcf69bc169c9bb1351987fba2be3 (diff) | |
download | dexon-solidity-0cc271fae9101ac27dad3491020a3b599d533254.tar dexon-solidity-0cc271fae9101ac27dad3491020a3b599d533254.tar.gz dexon-solidity-0cc271fae9101ac27dad3491020a3b599d533254.tar.bz2 dexon-solidity-0cc271fae9101ac27dad3491020a3b599d533254.tar.lz dexon-solidity-0cc271fae9101ac27dad3491020a3b599d533254.tar.xz dexon-solidity-0cc271fae9101ac27dad3491020a3b599d533254.tar.zst dexon-solidity-0cc271fae9101ac27dad3491020a3b599d533254.zip |
Handle absence of Natspec doc and add option to solc
Diffstat (limited to 'main.cpp')
-rw-r--r-- | main.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -136,6 +136,7 @@ int main(int argc, char** argv) cout << eth::disassemble(compiler.getBytecode()) << endl; cout << "Binary: " << toHex(compiler.getBytecode()) << endl; cout << "Interface specification: " << compiler.getInterface() << endl; + cout << "Natspec documentation: " << compiler.getDocumentation() << endl; return 0; } |