radix_tree
radix_tree copied to clipboard
deprecation warning, gcc-13
radix_tree/radix_tree_it.hpp:12:35: warning: ‘template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator’ is deprecated [-Wdeprecated-declarations]
12 | class radix_tree_it : public std::iterator<std::forward_iterator_tag, std::pair<K, T> > {
| ^~~~~~~~
@dakka I think it's because "std::iterator is deprecated". Please refer to this blog: https://www.fluentcpp.com/2018/05/08/std-iterator-deprecated/
@dakka I think it's because "std::iterator is deprecated". Please refer to this blog: https://www.fluentcpp.com/2018/05/08/std-iterator-deprecated/
Yes, reporting in the hope the author will fix.