clang-format

This commit is contained in:
gabime
2018-11-22 18:49:14 +02:00
parent f97cb00737
commit a31719b546
8 changed files with 39 additions and 36 deletions

View File

@@ -31,8 +31,10 @@ struct log_msg
{
}
log_msg(const std::string *loggers_name, level::level_enum lvl, string_view_t view):
log_msg(source_loc{}, loggers_name, lvl, view){}
log_msg(const std::string *loggers_name, level::level_enum lvl, string_view_t view)
: log_msg(source_loc{}, loggers_name, lvl, view)
{
}
log_msg(const log_msg &other) = default;
log_msg &operator=(const log_msg &other) = default;