Add comments.

This commit is contained in:
Victor Zverovich
2012-12-10 20:37:35 -08:00
parent 14e0f87d50
commit 0996e98727
3 changed files with 37 additions and 12 deletions
+2 -1
View File
@@ -1,5 +1,5 @@
/*
Small, safe and fast printf-like formatting library for C++
Small, safe and fast string formatting library for C++
Author: Victor Zverovich
*/
@@ -363,6 +363,7 @@ void fmt::Formatter::Format() {
}
}
buffer_.append(start, s + 1);
buffer_.resize(buffer_.size() - 1); // Don't count the terminating zero.
}
fmt::ArgFormatter::~ArgFormatter() {