Skip to content
Snippets Groups Projects
Commit 313ea748 authored by Dmitri Naumov's avatar Dmitri Naumov
Browse files

[BL] ConfigTree; Add size() to Range's.

parent 7d00c92b
No related branches found
No related tags found
No related merge requests found
......@@ -26,6 +26,8 @@ public:
Iterator begin() const { return _begin; }
Iterator end() const { return _end; }
std::size_t size() const { return std::distance(_begin, _end); }
private:
Iterator _begin;
Iterator _end;
......
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