diff options
author | 2023-12-06 07:58:49 +1100 | |
---|---|---|
committer | 2023-12-06 07:58:49 +1100 | |
commit | 79bef1e23049fdac25f1fefd132e0b6c7d2cc3a1 (patch) | |
tree | 643e9313fe86f583c4022c338677cbc12b761df7 /3rdparty/lzma/CPP/Common/IntToString.cpp | |
parent | 512ccf0c7c9b4f08e41038b2ed2de220e140385b (diff) |
3rdparty/lzma: Updated to version 23.01.
Diffstat (limited to '3rdparty/lzma/CPP/Common/IntToString.cpp')
-rw-r--r-- | 3rdparty/lzma/CPP/Common/IntToString.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/3rdparty/lzma/CPP/Common/IntToString.cpp b/3rdparty/lzma/CPP/Common/IntToString.cpp index c87643c8760..21b068061f0 100644 --- a/3rdparty/lzma/CPP/Common/IntToString.cpp +++ b/3rdparty/lzma/CPP/Common/IntToString.cpp @@ -16,7 +16,7 @@ char * ConvertUInt32ToString(UInt32 val, char *s) throw() { - CONVERT_INT_TO_STR(char, 16); + CONVERT_INT_TO_STR(char, 16) } char * ConvertUInt64ToString(UInt64 val, char *s) throw() @@ -25,7 +25,7 @@ char * ConvertUInt64ToString(UInt64 val, char *s) throw() { return ConvertUInt32ToString((UInt32)val, s); } - CONVERT_INT_TO_STR(char, 24); + CONVERT_INT_TO_STR(char, 24) } void ConvertUInt64ToOct(UInt64 val, char *s) throw() @@ -102,7 +102,7 @@ void ConvertUInt32ToHex8Digits(UInt32 val, char *s) throw() { unsigned t = val & 0xF; val >>= 4; - s[i] = GET_HEX_CHAR(t);; + s[i] = GET_HEX_CHAR(t); } } @@ -121,7 +121,7 @@ void ConvertUInt32ToHex8Digits(UInt32 val, wchar_t *s) wchar_t * ConvertUInt32ToString(UInt32 val, wchar_t *s) throw() { - CONVERT_INT_TO_STR(wchar_t, 16); + CONVERT_INT_TO_STR(wchar_t, 16) } wchar_t * ConvertUInt64ToString(UInt64 val, wchar_t *s) throw() @@ -130,7 +130,7 @@ wchar_t * ConvertUInt64ToString(UInt64 val, wchar_t *s) throw() { return ConvertUInt32ToString((UInt32)val, s); } - CONVERT_INT_TO_STR(wchar_t, 24); + CONVERT_INT_TO_STR(wchar_t, 24) } void ConvertInt64ToString(Int64 val, char *s) throw() |