summaryrefslogtreecommitdiffstats
path: root/llvm/lib/DebugInfo/PDB/DIA/DIAInjectedSource.cpp
diff options
context:
space:
mode:
authorZachary Turner <zturner@google.com>2018-03-19 20:22:48 +0000
committerZachary Turner <zturner@google.com>2018-03-19 20:22:48 +0000
commit426885b10cfc6170ac0a26a7654608cfa4d4dcad (patch)
treefddf3dbf5740f8fc198833b4255fcd3c576ab8a9 /llvm/lib/DebugInfo/PDB/DIA/DIAInjectedSource.cpp
parent3b967466d5977856c86c327eae206ec6e2719415 (diff)
downloadbcm5719-llvm-426885b10cfc6170ac0a26a7654608cfa4d4dcad.tar.gz
bcm5719-llvm-426885b10cfc6170ac0a26a7654608cfa4d4dcad.zip
Remove an unused private variable.
llvm-svn: 327900
Diffstat (limited to 'llvm/lib/DebugInfo/PDB/DIA/DIAInjectedSource.cpp')
-rw-r--r--llvm/lib/DebugInfo/PDB/DIA/DIAInjectedSource.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/llvm/lib/DebugInfo/PDB/DIA/DIAInjectedSource.cpp b/llvm/lib/DebugInfo/PDB/DIA/DIAInjectedSource.cpp
index fbd169524b6..1d642f221d7 100644
--- a/llvm/lib/DebugInfo/PDB/DIA/DIAInjectedSource.cpp
+++ b/llvm/lib/DebugInfo/PDB/DIA/DIAInjectedSource.cpp
@@ -16,9 +16,8 @@
using namespace llvm;
using namespace llvm::pdb;
-DIAInjectedSource::DIAInjectedSource(const DIASession &Session,
- CComPtr<IDiaInjectedSource> DiaSourceFile)
- : Session(Session), SourceFile(DiaSourceFile) {}
+DIAInjectedSource::DIAInjectedSource(CComPtr<IDiaInjectedSource> DiaSourceFile)
+ : SourceFile(DiaSourceFile) {}
uint32_t DIAInjectedSource::getCrc32() const {
DWORD Crc;
OpenPOWER on IntegriCloud