-
Notifications
You must be signed in to change notification settings - Fork 31
Open
Description
In C++17, inheriting from std::iterator is deprecated, on the theory that code is actually better if it just explicitly defines all the typedefs that std::iterator would get you by inheritance.
But it is still used e.g. here:
Line 45 in 1803c23
| class bfile_iterator : public std::iterator<std::forward_iterator_tag, basetype>{ |
This leads to compiler warnings when compiling under C++17 or later.
Metadata
Metadata
Assignees
Labels
No labels