| commit | 075897292fd94e43175c39218f0f742bee64232f | [log] [tgz] |
|---|---|---|
| author | Reid Kleckner <rnk@google.com> | Tue Oct 23 17:20:16 2018 +0000 |
| committer | Reid Kleckner <rnk@google.com> | Tue Oct 23 17:20:16 2018 +0000 |
| tree | 233721c8fbb4a45ca4557b7b86995847ab1a2e97 | |
| parent | 927e8bf316b3c66df509c396e19f0e1de1b98e79 [diff] [blame] |
[PDB] Fix -Wunused-private-field in DIA llvm-svn: 345054
diff --git a/llvm/lib/DebugInfo/PDB/DIA/DIASession.cpp b/llvm/lib/DebugInfo/PDB/DIA/DIASession.cpp index b89ca9a..bd375e1 100644 --- a/llvm/lib/DebugInfo/PDB/DIA/DIASession.cpp +++ b/llvm/lib/DebugInfo/PDB/DIA/DIASession.cpp
@@ -428,5 +428,5 @@ if (!FD) return nullptr; - return llvm::make_unique<DIAEnumFrameData>(*this, FD); + return llvm::make_unique<DIAEnumFrameData>(FD); }