diff options
author | Christian <c@ethdev.com> | 2014-12-08 19:07:17 +0800 |
---|---|---|
committer | Christian <c@ethdev.com> | 2014-12-08 19:07:17 +0800 |
commit | 1f209f1b7db9aac2d6149b3406da87bfa6e8deae (patch) | |
tree | a3e8b9f52183efe42bf34393a4e7b9539fb9e8c4 | |
parent | f59f0dfa8c7104b9a50d27e956248053658f689c (diff) | |
parent | 122b42579ec9fa2d086247e07b03fbc68463c569 (diff) | |
download | dexon-solidity-1f209f1b7db9aac2d6149b3406da87bfa6e8deae.tar dexon-solidity-1f209f1b7db9aac2d6149b3406da87bfa6e8deae.tar.gz dexon-solidity-1f209f1b7db9aac2d6149b3406da87bfa6e8deae.tar.bz2 dexon-solidity-1f209f1b7db9aac2d6149b3406da87bfa6e8deae.tar.lz dexon-solidity-1f209f1b7db9aac2d6149b3406da87bfa6e8deae.tar.xz dexon-solidity-1f209f1b7db9aac2d6149b3406da87bfa6e8deae.tar.zst dexon-solidity-1f209f1b7db9aac2d6149b3406da87bfa6e8deae.zip |
Merge remote-tracking branch 'ethereum/develop' into sol_import
Conflicts:
libsolidity/CompilerStack.cpp
libsolidity/CompilerStack.h
libsolidity/InterfaceHandler.cpp
libsolidity/InterfaceHandler.h
solc/main.cpp
test/solidityJSONInterfaceTest.cpp
test/solidityNatspecJSON.cpp
-rw-r--r-- | main.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -147,9 +147,9 @@ int main(int argc, char** argv) cout << "Opcodes:" << endl << eth::disassemble(compiler.getBytecode(contract)) << endl << "Binary: " << toHex(compiler.getBytecode(contract)) << endl - << "Interface specification: " << compiler.getJsonDocumentation(contract, ABI_INTERFACE) << endl - << "Natspec user documentation: " << compiler.getJsonDocumentation(contract, NATSPEC_USER) << endl - << "Natspec developer documentation: " << compiler.getJsonDocumentation(contract, NATSPEC_DEV) << endl; + << "Interface specification: " << compiler.getJsonDocumentation(contract, DocumentationType::ABI_INTERFACE) << endl + << "Natspec user documentation: " << compiler.getJsonDocumentation(contract, DocumentationType::NATSPEC_USER) << endl + << "Natspec developer documentation: " << compiler.getJsonDocumentation(contract, DocumentationType::NATSPEC_DEV) << endl; } return 0; |