Micro optimize: don't init log_msg.msg_id on construction. It will be set anyway later

This commit is contained in:
gabime
2018-10-06 01:49:34 +03:00
parent aa47ac85c9
commit 1b8bf35acc
2 changed files with 3 additions and 3 deletions

View File

@@ -39,7 +39,7 @@ struct log_msg
log_clock::time_point time;
size_t thread_id;
fmt::memory_buffer raw;
size_t msg_id{0};
size_t msg_id;
// info about wrapping the formatted text with color (updated by pattern_formatter).
mutable size_t color_range_start{0};