diff options
author | Lefteris Karapetsas <lefteris@refu.co> | 2015-01-26 23:58:54 +0800 |
---|---|---|
committer | Lefteris Karapetsas <lefteris@refu.co> | 2015-01-29 04:46:16 +0800 |
commit | 3ec6c0b1cbe1be0a95f711ce74b0e360fabdaa96 (patch) | |
tree | 358617f3063d1194ea0ddefda49c4e8ef57ef94b /AST.cpp | |
parent | 53ef6900b797cde404faac94af3058669187c115 (diff) | |
download | dexon-solidity-3ec6c0b1cbe1be0a95f711ce74b0e360fabdaa96.tar.gz dexon-solidity-3ec6c0b1cbe1be0a95f711ce74b0e360fabdaa96.tar.zst dexon-solidity-3ec6c0b1cbe1be0a95f711ce74b0e360fabdaa96.zip |
All interface functions are external.
Diffstat (limited to 'AST.cpp')
-rw-r--r-- | AST.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -151,7 +151,7 @@ vector<tuple<FixedHash<4>, std::shared_ptr<FunctionType const>, Declaration cons { functionsSeen.insert(f->getName()); FixedHash<4> hash(dev::sha3(f->getCanonicalSignature())); - m_interfaceFunctionList->push_back(make_tuple(hash, make_shared<FunctionType>(*f), f.get())); + m_interfaceFunctionList->push_back(make_tuple(hash, make_shared<FunctionType>(*f, false), f.get())); } for (ASTPointer<VariableDeclaration> const& v: contract->getStateVariables()) |