mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
removed get prefix
style fixes
This commit is contained in:
@@ -339,9 +339,11 @@ void CompilerStack::resolveImports()
|
||||
{
|
||||
string const& id = import->identifier();
|
||||
if (!m_sources.count(id))
|
||||
BOOST_THROW_EXCEPTION(ParserError()
|
||||
<< errinfo_sourceLocation(import->location())
|
||||
<< errinfo_comment("Source not found."));
|
||||
BOOST_THROW_EXCEPTION(
|
||||
ParserError()
|
||||
<< errinfo_sourceLocation(import->location())
|
||||
<< errinfo_comment("Source not found.")
|
||||
);
|
||||
toposort(&m_sources[id]);
|
||||
}
|
||||
sourceOrder.push_back(_source);
|
||||
|
||||
Reference in New Issue
Block a user