From: Craig Topper Date: Mon, 1 Jun 2015 06:44:16 +0000 (+0000) Subject: [TableGen] Remove unnecessary explicit initialization to null of a unique_ptr. NFC X-Git-Url: http://plrg.eecs.uci.edu/git/?p=oota-llvm.git;a=commitdiff_plain;h=f15cab13cbe858db0634663e86a22796c2a6a0ba;hp=ec93655812bbfc692bc0f4cfc9a703b2ae0ef8af [TableGen] Remove unnecessary explicit initialization to null of a unique_ptr. NFC git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@238726 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/TableGen/Record.h b/include/llvm/TableGen/Record.h index f3fc5519b10..16932a23a03 100644 --- a/include/llvm/TableGen/Record.h +++ b/include/llvm/TableGen/Record.h @@ -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;