[LCG] Remove two unused typedefs from the iterators.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@207052 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chandler Carruth 2014-04-23 23:51:02 +00:00
parent 23615f8f5c
commit e3273c50a2

View File

@ -115,8 +115,6 @@ public:
class iterator : public std::iterator<std::bidirectional_iterator_tag, Node> {
friend class LazyCallGraph;
friend class LazyCallGraph::Node;
typedef std::iterator<std::bidirectional_iterator_tag, Node *, ptrdiff_t,
Node *, Node *> BaseT;
/// \brief Nonce type to select the constructor for the end iterator.
struct IsAtEndT {};
@ -254,8 +252,6 @@ public:
SCC *> {
friend class LazyCallGraph;
friend class LazyCallGraph::Node;
typedef std::iterator<std::forward_iterator_tag, SCC *, ptrdiff_t,
SCC *, SCC *> BaseT;
/// \brief Nonce type to select the constructor for the end iterator.
struct IsAtEndT {};