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:
@@ -55,7 +55,7 @@ public:
|
||||
using LabelID = size_t;
|
||||
using SubID = size_t;
|
||||
|
||||
virtual ~AbstractAssembly() {}
|
||||
virtual ~AbstractAssembly() = default;
|
||||
|
||||
/// Set a new source location valid starting from the next instruction.
|
||||
virtual void setSourceLocation(langutil::SourceLocation const& _location) = 0;
|
||||
|
||||
@@ -38,7 +38,7 @@ class EVMAssembly: public AbstractAssembly
|
||||
{
|
||||
public:
|
||||
explicit EVMAssembly(bool _evm15 = false): m_evm15(_evm15) { }
|
||||
virtual ~EVMAssembly() {}
|
||||
virtual ~EVMAssembly() = default;
|
||||
|
||||
/// Set a new source location valid starting from the next instruction.
|
||||
void setSourceLocation(langutil::SourceLocation const& _location) override;
|
||||
|
||||
@@ -38,7 +38,7 @@ using namespace dev::solidity;
|
||||
|
||||
|
||||
EVMDialect::EVMDialect(AsmFlavour _flavour, bool _objectAccess):
|
||||
Dialect(_flavour), m_objectAccess(_objectAccess)
|
||||
Dialect{_flavour}, m_objectAccess(_objectAccess)
|
||||
{
|
||||
// The EVM instructions will be moved to builtins at some point.
|
||||
if (!m_objectAccess)
|
||||
|
||||
Reference in New Issue
Block a user