Renamed Print::write() into print()

This commit is contained in:
Benoît Blanchon
2014-07-03 13:38:58 +02:00
parent 81c7b9f700
commit 5b1c2047a4
5 changed files with 19 additions and 19 deletions

View File

@ -41,19 +41,19 @@ private:
{
size_t n = 0;
n += p.write("[");
n += p.write('[');
for (int i = 0; i < itemCount; i++)
{
if (i > 0)
{
n += p.write(",");
n += p.write(',');
}
n += items[i].printTo(p);
}
n += p.write("]");
n += p.write(']');
return n;
}