diff options
| -rw-r--r-- | llvm/include/llvm/DebugInfo/PDB/Native/HashTable.h | 4 | 
1 files changed, 3 insertions, 1 deletions
| diff --git a/llvm/include/llvm/DebugInfo/PDB/Native/HashTable.h b/llvm/include/llvm/DebugInfo/PDB/Native/HashTable.h index ab462b460ff..d110dd3865a 100644 --- a/llvm/include/llvm/DebugInfo/PDB/Native/HashTable.h +++ b/llvm/include/llvm/DebugInfo/PDB/Native/HashTable.h @@ -26,10 +26,12 @@ class BinaryStreamWriter;  namespace pdb { +class HashTable; +  class HashTableIterator      : public iterator_facade_base<HashTableIterator, std::forward_iterator_tag,                                    std::pair<uint32_t, uint32_t>> { -  friend class HashTable; +  friend HashTable;    HashTableIterator(const HashTable &Map, uint32_t Index, bool IsEnd); | 

