forked from OSchip/llvm-project
Use a default constructor. (NFC)
Thanks to David Blaikie for suggesting this. llvm-svn: 286292
This commit is contained in:
parent
2582e690b7
commit
72845a5f4e
|
@ -1953,10 +1953,10 @@ public:
|
|||
/// TODO: Store arguments directly and change \a DIExpression to store a
|
||||
/// range of these.
|
||||
class ExprOperand {
|
||||
const uint64_t *Op;
|
||||
const uint64_t *Op = nullptr;
|
||||
|
||||
public:
|
||||
ExprOperand() : Op(nullptr) {};
|
||||
ExprOperand() = default;
|
||||
explicit ExprOperand(const uint64_t *Op) : Op(Op) {}
|
||||
|
||||
const uint64_t *get() const { return Op; }
|
||||
|
|
Loading…
Reference in New Issue