We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b58c844 + ef2ff87 commit 96d32b3Copy full SHA for 96d32b3
src/lib_json/json_tool.h
@@ -63,7 +63,7 @@ typedef char UIntToStringBuffer[uintToStringBufferSize];
63
static inline void uintToString(LargestUInt value, char*& current) {
64
*--current = 0;
65
do {
66
- *--current = static_cast<signed char>(value % 10U + static_cast<unsigned>('0'));
+ *--current = static_cast<char>(value % 10U + static_cast<unsigned>('0'));
67
value /= 10;
68
} while (value != 0);
69
}
0 commit comments