aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian <c@ethdev.com>2014-12-08 19:07:17 +0800
committerChristian <c@ethdev.com>2014-12-08 19:07:17 +0800
commit1f209f1b7db9aac2d6149b3406da87bfa6e8deae (patch)
treea3e8b9f52183efe42bf34393a4e7b9539fb9e8c4
parentf59f0dfa8c7104b9a50d27e956248053658f689c (diff)
parent122b42579ec9fa2d086247e07b03fbc68463c569 (diff)
downloaddexon-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.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/main.cpp b/main.cpp
index b4cbc6ae..61f73b45 100644
--- a/main.cpp
+++ b/main.cpp
@@ -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;