From: Paul Robinson Date: Thu, 11 May 2017 02:07:08 +0000 (+0000) Subject: Remove redundant initialization. NFC X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=668926aef649184c796fe70bdbd035bc5aa5c82e;p=llvm Remove redundant initialization. NFC Post-commit review of r301940 by David Blaikie. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@302756 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/DebugInfo/DWARF/DWARFDebugLine.h b/include/llvm/DebugInfo/DWARF/DWARFDebugLine.h index e21245b97b7..39a7ef71de9 100644 --- a/include/llvm/DebugInfo/DWARF/DWARFDebugLine.h +++ b/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;