Skip to content
Snippets Groups Projects
Commit 205499c3 authored by Vadim Seregin's avatar Vadim Seregin
Browse files

Merge branch 'xlxiangli/fix_iterator' into 'master'

Avoid use of std::iterator which is deprecated in C++17

See merge request !384
parents f3453685 f5013c93
No related branches found
No related tags found
1 merge request!384Avoid use of std::iterator which is deprecated in C++17
Pipeline #9406 canceled
...@@ -817,7 +817,7 @@ private: ...@@ -817,7 +817,7 @@ private:
#include <iterator> #include <iterator>
template<typename T> template<typename T>
class UnitIterator : public std::iterator<std::forward_iterator_tag, T> class UnitIterator
{ {
private: private:
T* m_punit; T* m_punit;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment