std::iterator is depricated...

This commit is contained in:
Christian Zimmermann 2022-08-08 14:55:07 +02:00
parent 8f6094233a
commit 21bd120032
2 changed files with 1 additions and 3 deletions

View file

@ -18,8 +18,7 @@ namespace CNORXZ
template <typename T, class... Indices>
class ConstContainerIndex : public IndexInterface<ConstContainerIndex<T,Indices...>,
std::tuple<typename Indices::MetaType...> >,
public std::iterator<std::random_access_iterator_tag,T>
std::tuple<typename Indices::MetaType...> >
{
public:

View file

@ -5,7 +5,6 @@
#include <cstdlib>
#include <vector>
#include <memory>
#include <iterator>
#include <algorithm>
#include "base_def.h"