[TableGen] Remove unnecessary explicit initialization to null of a unique_ptr. NFC
authorCraig Topper <craig.topper@gmail.com>
Mon, 1 Jun 2015 06:44:16 +0000 (06:44 +0000)
committerCraig Topper <craig.topper@gmail.com>
Mon, 1 Jun 2015 06:44:16 +0000 (06:44 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@238726 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/TableGen/Record.h

index f3fc5519b10609c2cb81791947a93192b2c05e05..16932a23a03abe4ccd93ae64844919ef797d48de 100644 (file)
@@ -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;