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:
+1
-2
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user