mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Update version pragma and use new constructor syntax in std/ contracts.
This commit is contained in:
committed by
Alex Beregszaszi
parent
c98464db06
commit
f855c78a08
+3
-3
@@ -40,7 +40,7 @@ This means that cyclic creation dependencies are impossible.
|
||||
|
||||
::
|
||||
|
||||
pragma solidity ^0.4.20; // should actually be 0.4.21
|
||||
pragma solidity >0.4.21;
|
||||
|
||||
contract OwnedToken {
|
||||
// TokenCreator is a contract type that is defined below.
|
||||
@@ -981,7 +981,7 @@ Constructor functions can be either ``public`` or ``internal``.
|
||||
|
||||
::
|
||||
|
||||
pragma solidity ^0.4.20; // should actually be 0.4.21
|
||||
pragma solidity >0.4.21;
|
||||
|
||||
contract A {
|
||||
uint public a;
|
||||
@@ -998,7 +998,7 @@ Constructor functions can be either ``public`` or ``internal``.
|
||||
A constructor set as ``internal`` causes the contract to be marked as :ref:`abstract <abstract-contract>`.
|
||||
|
||||
.. note ::
|
||||
Prior to version 0.4.21, constructors were defined as functions with the same name as the contract. This syntax is now deprecated.
|
||||
Prior to version 0.4.22, constructors were defined as functions with the same name as the contract. This syntax is now deprecated.
|
||||
|
||||
::
|
||||
|
||||
|
||||
Reference in New Issue
Block a user