cmLinkedTree: Remove deprecated std::iterator

This commit is contained in:
Vitaly Stakhovsky
2018-12-30 15:55:14 -05:00
parent ae8525b82f
commit 1b135cdff2

View File

@@ -6,7 +6,6 @@
#include "cmConfigure.h" // IWYU pragma: keep
#include <assert.h>
#include <iterator>
#include <vector>
/**
@@ -33,7 +32,7 @@ class cmLinkedTree
typedef T& ReferenceType;
public:
class iterator : public std::iterator<std::forward_iterator_tag, T>
class iterator
{
friend class cmLinkedTree;
cmLinkedTree* Tree;