This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository lldb.
from 41d57ed0c Fix compilation failure in unit tests on Windows. new e9ae19f4c [NativePDB] Rewrite the PdbSymUid to use our own custom names [...]
The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: source/Plugins/SymbolFile/NativePDB/CMakeLists.txt | 1 + .../SymbolFile/NativePDB/CompileUnitIndex.cpp | 28 +- .../SymbolFile/NativePDB/CompileUnitIndex.h | 12 +- source/Plugins/SymbolFile/NativePDB/PdbIndex.cpp | 14 +- source/Plugins/SymbolFile/NativePDB/PdbIndex.h | 2 +- source/Plugins/SymbolFile/NativePDB/PdbSymUid.cpp | 161 +++++++++++ source/Plugins/SymbolFile/NativePDB/PdbSymUid.h | 233 +++++---------- source/Plugins/SymbolFile/NativePDB/PdbUtil.cpp | 15 + source/Plugins/SymbolFile/NativePDB/PdbUtil.h | 11 + .../SymbolFile/NativePDB/SymbolFileNativePDB.cpp | 314 +++++++++------------ .../SymbolFile/NativePDB/SymbolFileNativePDB.h | 39 +-- .../SymbolFile/NativePDB/UdtRecordCompleter.cpp | 12 +- .../SymbolFile/NativePDB/UdtRecordCompleter.h | 4 +- 13 files changed, 435 insertions(+), 411 deletions(-) create mode 100644 source/Plugins/SymbolFile/NativePDB/PdbSymUid.cpp