API docs.
This commit is contained in:
parent
b605b3980c
commit
2951f8b3d8
7
format.h
7
format.h
@ -628,6 +628,9 @@ class BasicWriter {
|
|||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
Writes *value* to the stream.
|
||||||
|
*/
|
||||||
BasicWriter &operator<<(const fmt::BasicStringRef<Char> value) {
|
BasicWriter &operator<<(const fmt::BasicStringRef<Char> value) {
|
||||||
const Char *str = value.c_str();
|
const Char *str = value.c_str();
|
||||||
std::size_t size = value.size();
|
std::size_t size = value.size();
|
||||||
@ -1038,7 +1041,7 @@ class NoAction {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// Formats an error message and prints it to std::cerr.
|
// Formats an error message and prints it to stdout.
|
||||||
fmt::Formatter<PrintError> ReportError(const char *format) {
|
fmt::Formatter<PrintError> ReportError(const char *format) {
|
||||||
return fmt::Formatter<PrintError>(format);
|
return fmt::Formatter<PrintError>(format);
|
||||||
}
|
}
|
||||||
@ -1183,7 +1186,7 @@ inline Formatter<NoAction, wchar_t> Format(WStringRef format) {
|
|||||||
/** A formatting action that writes formatted output to stdout. */
|
/** A formatting action that writes formatted output to stdout. */
|
||||||
class Write {
|
class Write {
|
||||||
public:
|
public:
|
||||||
/** Write the output to stdout. */
|
/** Writes the output to stdout. */
|
||||||
void operator()(const BasicWriter<char> &w) const {
|
void operator()(const BasicWriter<char> &w) const {
|
||||||
std::fwrite(w.data(), 1, w.size(), stdout);
|
std::fwrite(w.data(), 1, w.size(), stdout);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user