keep clang-tidy happy

This commit is contained in:
gabime 2018-11-22 18:50:56 +02:00
parent a31719b546
commit a463989278
1 changed files with 2 additions and 2 deletions

View File

@ -188,8 +188,8 @@ using filename_t = std::string;
struct source_loc
{
SPDLOG_CONSTEXPR source_loc()
: filename("")
, line(0)
: filename{""}
, line{0}
{
}
SPDLOG_CONSTEXPR source_loc(const char *filename, int line)