Removed unneeded intializers from async_msg

This commit is contained in:
gabime 2018-04-22 00:25:20 +03:00
parent 64c725cee2
commit 384ae1dc1b
1 changed files with 2 additions and 2 deletions

View File

@ -26,13 +26,13 @@ enum class async_msg_type
struct async_msg struct async_msg
{ {
async_msg_type msg_type; async_msg_type msg_type;
level::level_enum level{level::info}; level::level_enum level;
log_clock::time_point time; log_clock::time_point time;
size_t thread_id; size_t thread_id;
fmt::MemoryWriter raw; fmt::MemoryWriter raw;
size_t msg_id; size_t msg_id;
async_logger_ptr worker_ptr{nullptr}; async_logger_ptr worker_ptr;
async_msg() = default; async_msg() = default;
~async_msg() = default; ~async_msg() = default;