mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Removing unneeded local variable in CompilerStack::getDocumentation()
This commit is contained in:
parent
0d3ab07ad1
commit
af9fb9917c
@ -136,8 +136,7 @@ string const& CompilerStack::getDocumentation()
|
||||
Json::Value doc;
|
||||
Json::Value methods(Json::objectValue);
|
||||
|
||||
vector<FunctionDefinition const*> exportedFunctions = m_contractASTNode->getInterfaceFunctions();
|
||||
for (FunctionDefinition const* f: exportedFunctions)
|
||||
for (FunctionDefinition const* f: m_contractASTNode->getInterfaceFunctions())
|
||||
{
|
||||
Json::Value user;
|
||||
auto strPtr = f->getDocumentation();
|
||||
|
Loading…
Reference in New Issue
Block a user