Skip to content
Snippets Groups Projects
Commit f5013c93 authored by Xiang Li's avatar Xiang Li
Browse files

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

parent 269c0a55
No related branches found
No related tags found
1 merge request!384Avoid use of std::iterator which is deprecated in C++17
Pipeline #9401 passed
...@@ -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