| 1233 | |
| 1234 | public: |
| 1235 | constexpr explicit compile_parse_context(basic_string_view<Char> fmt, |
| 1236 | int num_args, const type* types, |
| 1237 | int next_arg_id = 0) |
| 1238 | : base(fmt, next_arg_id), num_args_(num_args), types_(types) {} |
| 1239 | |
| 1240 | constexpr auto num_args() const -> int { return num_args_; } |
| 1241 | constexpr auto arg_type(int id) const -> type { return types_[id]; } |
nothing calls this directly
no outgoing calls
no test coverage detected