| 5992 | using token_type = typename lexer_base<BasicJsonType>::token_type; |
| 5993 | |
| 5994 | explicit lexer(InputAdapterType&& adapter, bool ignore_comments_ = false) |
| 5995 | : ia(std::move(adapter)) |
| 5996 | , ignore_comments(ignore_comments_) |
| 5997 | , decimal_point_char(static_cast<char_int_type>(get_decimal_point())) |
| 5998 | {} |
| 5999 | |
| 6000 | // delete because of pointer members |
| 6001 | lexer(const lexer&) = delete; |
nothing calls this directly
no outgoing calls
no test coverage detected