[llvm] r325389 - Try again to fix the build.

Zachary Turner via llvm-commits llvm-commits at lists.llvm.org
Fri Feb 16 13:10:34 PST 2018


Author: zturner
Date: Fri Feb 16 13:10:34 2018
New Revision: 325389

URL: http://llvm.org/viewvc/llvm-project?rev=325389&view=rev
Log:
Try again to fix the build.

This doesn't repro with clang or MSVC so I'm just blindly
guessing.

Modified:
    llvm/trunk/include/llvm/DebugInfo/PDB/Native/HashTable.h

Modified: llvm/trunk/include/llvm/DebugInfo/PDB/Native/HashTable.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/DebugInfo/PDB/Native/HashTable.h?rev=325389&r1=325388&r2=325389&view=diff
==============================================================================
--- llvm/trunk/include/llvm/DebugInfo/PDB/Native/HashTable.h (original)
+++ llvm/trunk/include/llvm/DebugInfo/PDB/Native/HashTable.h Fri Feb 16 13:10:34 2018
@@ -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);
 




More information about the llvm-commits mailing list