mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
fix test code due to API changes in DeclarationContainer
This commit is contained in:
parent
114776dfba
commit
7d7f9ec67f
@ -79,7 +79,9 @@ Declaration const& resolveDeclaration(
|
||||
// bracers are required, cause msvc couldnt handle this macro in for statement
|
||||
for (string const& namePart: _namespacedName)
|
||||
{
|
||||
BOOST_REQUIRE(declaration = _resolver.resolveName(namePart, declaration));
|
||||
auto declarations = _resolver.resolveName(namePart, declaration);
|
||||
BOOST_REQUIRE(!declarations.empty());
|
||||
BOOST_REQUIRE(declaration = *declarations.begin());
|
||||
}
|
||||
BOOST_REQUIRE(declaration);
|
||||
return *declaration;
|
||||
|
Loading…
Reference in New Issue
Block a user