mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
make use of C++ = default constructor declarations as well as more non-static member initialization syntax.
This commit is contained in:
+1
-1
@@ -37,7 +37,7 @@ struct AsmAnalysisInfo;
|
||||
*/
|
||||
struct ObjectNode
|
||||
{
|
||||
virtual ~ObjectNode() {}
|
||||
virtual ~ObjectNode() = default;
|
||||
virtual std::string toString(bool _yul) const = 0;
|
||||
|
||||
YulString name;
|
||||
|
||||
Reference in New Issue
Block a user