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:
@@ -41,7 +41,7 @@ class CodeFragment
|
||||
public:
|
||||
using ReadCallback = std::function<std::string(std::string const&)>;
|
||||
|
||||
CodeFragment() {}
|
||||
CodeFragment() = default;
|
||||
CodeFragment(sp::utree const& _t, CompilerState& _s, ReadCallback const& _readFile, bool _allowASM = false);
|
||||
|
||||
static CodeFragment compile(std::string const& _src, CompilerState& _s, ReadCallback const& _readFile);
|
||||
|
||||
Reference in New Issue
Block a user