forked from OSchip/llvm-project
[TableGen] Remove unnecessary explicit initialization to null of a unique_ptr. NFC
llvm-svn: 238726
This commit is contained in:
parent
a0303bf5ef
commit
8eb887fefc
|
@ -57,7 +57,7 @@ private:
|
|||
public:
|
||||
RecTyKind getRecTyKind() const { return Kind; }
|
||||
|
||||
RecTy(RecTyKind K) : Kind(K), ListTy(nullptr) {}
|
||||
RecTy(RecTyKind K) : Kind(K) {}
|
||||
virtual ~RecTy() {}
|
||||
|
||||
virtual std::string getAsString() const = 0;
|
||||
|
|
Loading…
Reference in New Issue