Current C++ compilers complain about: - [ ] `std::iterator` (C++17 deprecation?) - [ ] `std::unary_function` and friends (deprecated in C++11 and removed in C++17). This functionality can probably be replaced with more modern C++ features. Shouldn't need to explicitly state `argument_type` etc.
Current C++ compilers complain about:
std::iterator(C++17 deprecation?)std::unary_functionand friends (deprecated in C++11 and removed in C++17).This functionality can probably be replaced with more modern C++ features. Shouldn't need to explicitly state
argument_typeetc.