Merge branch 'develop' of https://github.com/ethereum/solidity into develop

This commit is contained in:
RJ Catalano 2016-01-11 15:39:35 -06:00
commit 4a6815c9bd

View File

@ -495,7 +495,10 @@ void TypeChecker::visitManually(
break; break;
} }
if (!parameters) if (!parameters)
{
typeError(_modifier.location(), "Referenced declaration is neither modifier nor base class."); typeError(_modifier.location(), "Referenced declaration is neither modifier nor base class.");
return;
}
if (parameters->size() != arguments.size()) if (parameters->size() != arguments.size())
typeError( typeError(
_modifier.location(), _modifier.location(),