From: Paul Robinson Date: Thu, 11 May 2017 02:07:08 +0000 (+0000) Subject: Remove redundant initialization. NFC X-Git-Tag: llvmorg-5.0.0-rc1~5374 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a1f97d7c38398821a35f23909fc6ef69b0021ed0;p=platform%2Fupstream%2Fllvm.git Remove redundant initialization. NFC Post-commit review of r301940 by David Blaikie. llvm-svn: 302756 --- diff --git a/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugLine.h b/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugLine.h index e21245b..39a7ef7 100644 --- a/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugLine.h +++ b/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugLine.h @@ -30,7 +30,7 @@ public: struct FileNameEntry { FileNameEntry() = default; - StringRef Name = StringRef(); + StringRef Name; uint64_t DirIdx = 0; uint64_t ModTime = 0; uint64_t Length = 0;