| 969 | { |
| 970 | public: |
| 971 | static invalid_iterator create(int id_, const std::string& what_arg) |
| 972 | { |
| 973 | std::string w = exception::name("invalid_iterator", id_) + what_arg; |
| 974 | return invalid_iterator(id_, w.c_str()); |
| 975 | } |
| 976 | |
| 977 | private: |
| 978 | invalid_iterator(int id_, const char* what_arg) |
nothing calls this directly
no test coverage detected