Code formatting

This commit is contained in:
gabime
2018-10-19 17:12:35 +03:00
parent 70bef682b0
commit 4e3e80109a
4 changed files with 7 additions and 8 deletions

View File

@@ -29,7 +29,7 @@ template<size_t Buffer_Size>
inline void append_string_view(fmt::string_view view, fmt::basic_memory_buffer<char, Buffer_Size> &dest)
{
auto *buf_ptr = view.data();
if(buf_ptr != nullptr)
if (buf_ptr != nullptr)
{
dest.append(buf_ptr, buf_ptr + view.size());
}