forked from OSchip/llvm-project
SmallPtrSetImpl/SmallPtrSet: Add a public value_type and key_type
llvm-svn: 303518
This commit is contained in:
parent
706f79ab14
commit
ca74978d6c
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue