[PATCH] D62467: NFC: Change usage of 'DenseSet' to 'DenseSetImpl' in DenseSetImpl::ConstIterator.

River Riddle via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Sun May 26 11:00:04 PDT 2019


rriddle created this revision.
Herald added subscribers: llvm-commits, kristina, dexonsmith.
Herald added a project: LLVM.

Change usage of 'DenseSet' to 'DenseSetImpl' in a friend declaration within DenseSetImpl::ConstIterator.


Repository:
  rL LLVM

https://reviews.llvm.org/D62467

Files:
  llvm/include/llvm/ADT/DenseSet.h


Index: llvm/include/llvm/ADT/DenseSet.h
===================================================================
--- llvm/include/llvm/ADT/DenseSet.h
+++ llvm/include/llvm/ADT/DenseSet.h
@@ -130,7 +130,7 @@
 
   class ConstIterator {
     typename MapTy::const_iterator I;
-    friend class DenseSet;
+    friend class DenseSetImpl;
     friend class Iterator;
 
   public:


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D62467.201460.patch
Type: text/x-patch
Size: 369 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190526/17e35cd0/attachment.bin>


More information about the llvm-commits mailing list