fixed return valu for resolver

This commit is contained in:
LianaHus 2015-11-04 14:49:54 +01:00
parent 3f726825fb
commit 79177de80b
2 changed files with 5 additions and 5 deletions

View File

@ -140,13 +140,13 @@ bool NameAndTypeResolver::resolveNamesAndTypes(ContractDefinition& _contract)
if (!resolver.resolve(*function))
success = false;
}
// if (!result)
// return false;
if (!success)
return false;
}
catch (FatalError const& _e)
{
// if (m_errors.empty())
// throw; // Something is weird here, rather throw again.
if (m_errors.empty())
throw; // Something is weird here, rather throw again.
return false;
}
return true;

View File

@ -60,7 +60,7 @@ public:
bool resolve(ASTNode& _root)
{
_root.accept(*this);
return true;//m_errors.empty();
return Error::containsOnlyWarnings(m_errors);
}
private: