Move public constructor property into AST itself.

This commit is contained in:
chriseth
2017-03-06 14:12:42 +01:00
parent ca4e2933dd
commit f300bdb020
5 changed files with 10 additions and 6 deletions
+1 -1
View File
@@ -628,7 +628,7 @@ void CompilerStack::compileContract(
if (
_compiledContracts.count(&_contract) ||
!_contract.annotation().isFullyImplemented ||
!_contract.annotation().hasPublicConstructor
!_contract.constructorIsPublic()
)
return;
for (auto const* dependency: _contract.annotation().contractDependencies)