Update docs

This commit is contained in:
Victor Zverovich
2018-03-19 19:47:14 -07:00
parent 6d339e32a0
commit 17258e9c63
3 changed files with 33 additions and 45 deletions
+2 -1
View File
@@ -1399,7 +1399,8 @@ class arg_formatter_base {
}
void write(const char_type *value) {
auto length = value != FMT_NULL ? std::char_traits<char_type>::length(value) : 0;
auto length = value != FMT_NULL ?
std::char_traits<char_type>::length(value) : 0;
writer_.write_str(basic_string_view<char_type>(value, length), specs_);
}