We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df6e7b2 commit c17816cCopy full SHA for c17816c
doc/api.rst
@@ -140,15 +140,15 @@ without implementing them yourself. For example::
140
// parse is inherited from formatter<string_view>.
141
142
auto format(color c, format_context& ctx) const
143
- -> format_parse_context::iterator;
+ -> format_context::iterator;
144
};
145
146
// color.cc:
147
#include "color.h"
148
#include <fmt/format.h>
149
150
auto fmt::formatter<color>::format(color c, format_context& ctx) const
151
- -> format_parse_context::iterator {
+ -> format_context::iterator {
152
string_view name = "unknown";
153
switch (c) {
154
case color::red: name = "red"; break;
0 commit comments