fixing comment for Node_index_range

removing Node_range
[skip ci]
This commit is contained in:
Sven Oesau 2024-01-12 19:01:03 +01:00
parent 172044b128
commit beea3f2fda
1 changed files with 2 additions and 2 deletions

View File

@ -137,10 +137,10 @@ public:
using Split_predicate = std::function<bool(Node_index, const Self&)>;
/*!
* \brief A model of `ConstRange` whose value type is `Node_index`. Its iterator type is `ForwardIterator`.
* \brief A model of `ConstRange` whose value type is `Node_index` and its iterator type is `ForwardIterator`.
*/
#ifdef DOXYGEN_RUNNING
using Node_range = unspecified_type;
using Node_index_range = unspecified_type;
#else
using Node_index_range = boost::iterator_range<Index_traversal_iterator<Self>>;