diff options
Diffstat (limited to 'llvm/tools')
| -rw-r--r-- | llvm/tools/llvm-pdbutil/Diff.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/tools/llvm-pdbutil/Diff.cpp b/llvm/tools/llvm-pdbutil/Diff.cpp index 286dc51c29b..9aac4b33407 100644 --- a/llvm/tools/llvm-pdbutil/Diff.cpp +++ b/llvm/tools/llvm-pdbutil/Diff.cpp @@ -417,8 +417,8 @@ Error DiffStyle::diffInfoStream() { IS2.getFeatureSignatures()); D.print("Named Stream Size", IS1.getNamedStreamMapByteSize(), IS2.getNamedStreamMapByteSize()); - StringMap<uint32_t> NSL = IS1.getNamedStreams().getStringMap(); - StringMap<uint32_t> NSR = IS2.getNamedStreams().getStringMap(); + StringMap<uint32_t> NSL = IS1.getNamedStreams().entries(); + StringMap<uint32_t> NSR = IS2.getNamedStreams().entries(); D.diffUnorderedMap<EquivalentDiffProvider>("Named Stream", NSL, NSR); return Error::success(); } |

