| 3066 | template <typename Char = char> class dynamic_formatter { |
| 3067 | private: |
| 3068 | struct null_handler : internal::error_handler { |
| 3069 | void on_align(align_t) {} |
| 3070 | void on_plus() {} |
| 3071 | void on_minus() {} |
| 3072 | void on_space() {} |
| 3073 | void on_hash() {} |
| 3074 | }; |
| 3075 | |
| 3076 | public: |
| 3077 | template <typename ParseContext> |