aboutsummaryrefslogtreecommitdiffstats
path: root/AST.cpp
diff options
context:
space:
mode:
authorLefteris Karapetsas <lefteris@refu.co>2015-01-26 23:58:54 +0800
committerLefteris Karapetsas <lefteris@refu.co>2015-01-29 04:46:16 +0800
commit3ec6c0b1cbe1be0a95f711ce74b0e360fabdaa96 (patch)
tree358617f3063d1194ea0ddefda49c4e8ef57ef94b /AST.cpp
parent53ef6900b797cde404faac94af3058669187c115 (diff)
downloaddexon-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.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/AST.cpp b/AST.cpp
index 38adebf9..bf3d9894 100644
--- a/AST.cpp
+++ b/AST.cpp
@@ -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())