Update tesmplate parameter names

This commit is contained in:
Victor Zverovich 2018-01-13 14:57:43 -08:00
parent 3a2e89e134
commit 00f1450d9a

View File

@ -296,8 +296,8 @@ TEST(WriterTest, hexu) {
EXPECT_EQ("DEADBEEF", write_str(0xdeadbeefull, type='X')); EXPECT_EQ("DEADBEEF", write_str(0xdeadbeefull, type='X'));
} }
template <typename Char> template <typename Range>
basic_writer<Char> &operator<<(basic_writer<Char> &w, const Date &d) { basic_writer<Range> &operator<<(basic_writer<Range> &w, const Date &d) {
w.write(d.year()); w.write(d.year());
w.write('-'); w.write('-');
w.write(d.month()); w.write(d.month());
@ -312,9 +312,9 @@ class ISO8601DateFormatter {
public: public:
ISO8601DateFormatter(const Date &d) : date_(&d) {} ISO8601DateFormatter(const Date &d) : date_(&d) {}
template <typename Char> template <typename Range>
friend basic_writer<Char> &operator<<( friend basic_writer<Range> &operator<<(
basic_writer<Char> &w, const ISO8601DateFormatter &d) { basic_writer<Range> &w, const ISO8601DateFormatter &d) {
w.write(d.date_->year(), width=4, fill='0'); w.write(d.date_->year(), width=4, fill='0');
w.write('-'); w.write('-');
w.write(d.date_->month(), width=2, fill='0'); w.write(d.date_->month(), width=2, fill='0');