Commit 8b4a4667 authored by Victor Zverovich's avatar Victor Zverovich

Correct a miselading comment.

parent c4c5677e
...@@ -163,7 +163,7 @@ extern const char DIGITS[]; ...@@ -163,7 +163,7 @@ extern const char DIGITS[];
void ReportUnknownType(char code, const char *type); void ReportUnknownType(char code, const char *type);
// Returns the number of decimal digits in n. Trailing zeros are not counted // Returns the number of decimal digits in n. Leading zeros are not counted
// except for n == 0 in which case CountDigits returns 1. // except for n == 0 in which case CountDigits returns 1.
inline unsigned CountDigits(uint64_t n) { inline unsigned CountDigits(uint64_t n) {
unsigned count = 1; unsigned count = 1;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment