SmallPtrSetImpl/SmallPtrSet: Add a public value_type and key_type

llvm-svn: 303518
This commit is contained in:
Daniel Berlin 2017-05-21 23:41:51 +00:00
parent 706f79ab14
commit ca74978d6c
1 changed files with 2 additions and 0 deletions

View File

@ -365,6 +365,8 @@ protected:
public:
using iterator = SmallPtrSetIterator<PtrType>;
using const_iterator = SmallPtrSetIterator<PtrType>;
using key_type = ConstPtrType;
using value_type = PtrType;
SmallPtrSetImpl(const SmallPtrSetImpl &) = delete;