Activity for Andreas Schniertshauer

  • Andreas Schniertshauer Andreas Schniertshauer posted a comment on discussion STLplus Development and Bugs

    The std::iterator class template (used as a base class to provide typedefs) is deprecated in C++17. (The <iterator> header is NOT deprecated.) The C++ Standard has never required user-defined iterators to derive from std::iterator. To fix this warning, stop deriving from std::iterator and start providing publicly accessible typedefs named iterator_category, value_type, difference_type, pointer, and reference. Note that value_type is required to be non-const, even for constant iterators. You can define...

  • Andreas Schniertshauer Andreas Schniertshauer posted a comment on discussion STLplus Development and Bugs

    The dtor of digraph (~digraph) is very slow, because clear is called that calls i=erase(i)...

1
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.