Support for source location in async loggers

This commit is contained in:
gabime
2018-11-22 19:17:41 +02:00
parent a463989278
commit 521b0733d4
2 changed files with 13 additions and 2 deletions

View File

@@ -197,8 +197,13 @@ struct source_loc
, line(line)
{
}
const char *const filename;
const uint32_t line;
//
// source_loc (const source_loc&) = default;
// source_loc& operator=(const source_loc&) = default;
// source_loc& operator=(source_loc&&) = default;
const char *filename;
uint32_t line;
};
namespace details {