FormatDec -> format_decimal

This commit is contained in:
Victor Zverovich
2014-07-29 08:45:29 -07:00
parent bf5b246717
commit d346a4120d
2 changed files with 15 additions and 14 deletions
+1 -1
View File
@@ -1894,7 +1894,7 @@ class FormatInt {
// a pointer to the end of the formatted string. This function doesn't
// write a terminating null character.
template <typename T>
inline void FormatDec(char *&buffer, T value) {
inline void format_decimal(char *&buffer, T value) {
typename internal::IntTraits<T>::MainType abs_value = value;
if (internal::is_negative(value)) {
*buffer++ = '-';