[llvm] 91a48b1 - [ADT] Remove an unused private "using" directive (#157020)
via llvm-commits
llvm-commits at lists.llvm.org
Fri Sep 5 08:43:13 PDT 2025
Author: Kazu Hirata
Date: 2025-09-05T08:43:09-07:00
New Revision: 91a48b19b9617a60a9a7ed9eb926bbf4f9787a72
URL: https://github.com/llvm/llvm-project/commit/91a48b19b9617a60a9a7ed9eb926bbf4f9787a72
DIFF: https://github.com/llvm/llvm-project/commit/91a48b19b9617a60a9a7ed9eb926bbf4f9787a72.diff
LOG: [ADT] Remove an unused private "using" directive (#157020)
SmallSetIterator::SelfTy is not used anywhere.
Added:
Modified:
llvm/include/llvm/ADT/SmallSet.h
Removed:
################################################################################
diff --git a/llvm/include/llvm/ADT/SmallSet.h b/llvm/include/llvm/ADT/SmallSet.h
index 7d8c328758d53..0e90293352630 100644
--- a/llvm/include/llvm/ADT/SmallSet.h
+++ b/llvm/include/llvm/ADT/SmallSet.h
@@ -36,7 +36,6 @@ class SmallSetIterator
private:
using SetIterTy = typename std::set<T, C>::const_iterator;
using VecIterTy = typename SmallVector<T, N>::const_iterator;
- using SelfTy = SmallSetIterator<T, N, C>;
/// Iterators to the parts of the SmallSet containing the data. They are set
/// depending on isSmall.
More information about the llvm-commits
mailing list