diff options
| author | Zachary Turner <zturner@google.com> | 2018-02-16 21:10:34 +0000 | 
|---|---|---|
| committer | Zachary Turner <zturner@google.com> | 2018-02-16 21:10:34 +0000 | 
| commit | 8826d24576f06167ddbb3b51ada10cbadfa0cf6b (patch) | |
| tree | a1f51a4b2a7d6f07c650f5f4e46db0a0d16b4485 | |
| parent | 10a748aa1e954100aa22d457905eb45816d74848 (diff) | |
| download | bcm5719-llvm-8826d24576f06167ddbb3b51ada10cbadfa0cf6b.tar.gz bcm5719-llvm-8826d24576f06167ddbb3b51ada10cbadfa0cf6b.zip | |
Try again to fix the build.
This doesn't repro with clang or MSVC so I'm just blindly
guessing.
llvm-svn: 325389
| -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); | 

