Commit 683080be authored by gabime's avatar gabime

Fix clang-tidy warning

parent d14b8a9a
...@@ -158,7 +158,7 @@ struct formatter<spdlog::details::dump_info<T>> ...@@ -158,7 +158,7 @@ struct formatter<spdlog::details::dump_info<T>>
} }
put_newline(inserter, i - the_range.begin()); put_newline(inserter, static_cast<size_t >(i - the_range.begin()));
// put first byte without delimiter in front of it // put first byte without delimiter in front of it
*inserter++ = hex_chars[(ch >> 4) & 0x0f]; *inserter++ = hex_chars[(ch >> 4) & 0x0f];
......
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