diff options
author | Chad Rosier <mcrosier@codeaurora.org> | 2016-05-27 18:31:02 +0000 |
---|---|---|
committer | Chad Rosier <mcrosier@codeaurora.org> | 2016-05-27 18:31:02 +0000 |
commit | 6c247c8cc8054c0c4cc18f1d7c21c5fdb8b1d0e3 (patch) | |
tree | 1010a3bf309175871a3e382958e575eda8e559c0 /llvm/lib/DebugInfo/PDB/Raw/ModInfo.cpp | |
parent | 3a9a23ae62be9959ea1d98ed22fea561efd9cf03 (diff) | |
download | llvm-6c247c8cc8054c0c4cc18f1d7c21c5fdb8b1d0e3.zip llvm-6c247c8cc8054c0c4cc18f1d7c21c5fdb8b1d0e3.tar.gz llvm-6c247c8cc8054c0c4cc18f1d7c21c5fdb8b1d0e3.tar.bz2 |
Revert "[pdb] Allow zero-copy read support for symbol streams."
This reverts commit r271024 due to error: static_assert failed
"You must either provide a specialization of VarStreamArrayExtractor
or a custom extractor"
llvm-svn: 271026
Diffstat (limited to 'llvm/lib/DebugInfo/PDB/Raw/ModInfo.cpp')
-rw-r--r-- | llvm/lib/DebugInfo/PDB/Raw/ModInfo.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/llvm/lib/DebugInfo/PDB/Raw/ModInfo.cpp b/llvm/lib/DebugInfo/PDB/Raw/ModInfo.cpp index 67dc81d..9ccb7ed 100644 --- a/llvm/lib/DebugInfo/PDB/Raw/ModInfo.cpp +++ b/llvm/lib/DebugInfo/PDB/Raw/ModInfo.cpp @@ -67,8 +67,6 @@ struct ModInfo::FileLayout { // Null terminated Obj File Name }; -ModInfo::ModInfo() : Layout(nullptr) {} - ModInfo::ModInfo(codeview::StreamRef Stream) : Layout(nullptr) { codeview::StreamReader Reader(Stream); if (auto EC = Reader.readObject(Layout)) { |