clang-format

This commit is contained in:
gabime
2020-04-12 02:21:48 +03:00
parent d38bd138cd
commit 8bc1ca0e44
2 changed files with 1 additions and 3 deletions

View File

@@ -65,7 +65,7 @@ template<typename T>
inline void pad3(T n, memory_buf_t &dest)
{
static_assert(std::is_unsigned<T>::value, "pad3 must get unsigned T");
if(n < 1000)
if (n < 1000)
{
dest.push_back(static_cast<char>(n / 100 + '0'));
n = n % 100;