diff options
author | Christian <c@ethdev.com> | 2014-12-08 19:19:23 +0800 |
---|---|---|
committer | Christian <c@ethdev.com> | 2014-12-08 19:19:37 +0800 |
commit | 260a1529a758fb7b75840e05d8c0be18975ff3b2 (patch) | |
tree | bf5fd192b43484b0c15c080ad3e3af30fd3553aa | |
parent | 26f554d0d857bfda3f0b6970461c442a5da56dc7 (diff) | |
download | dexon-solidity-260a1529a758fb7b75840e05d8c0be18975ff3b2.tar.gz dexon-solidity-260a1529a758fb7b75840e05d8c0be18975ff3b2.tar.zst dexon-solidity-260a1529a758fb7b75840e05d8c0be18975ff3b2.zip |
Compile fix.
-rw-r--r-- | CompilerStack.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CompilerStack.cpp b/CompilerStack.cpp index d0b1df18..41ae5603 100644 --- a/CompilerStack.cpp +++ b/CompilerStack.cpp @@ -128,7 +128,7 @@ void CompilerStack::streamAssembly(ostream& _outStream, string const& _contractN string const& CompilerStack::getInterface(std::string const& _contractName) { - return getJsonDocumentation(_contractName, ABI_INTERFACE); + return getJsonDocumentation(_contractName, DocumentationType::ABI_INTERFACE); } std::string const& CompilerStack::getJsonDocumentation(std::string const& _contractName, DocumentationType _type) |