Fix C++20 build resulting in deprecated implicit copy assignment operator warning

This commit is contained in:
JB_12 2021-06-02 08:20:29 +01:00
parent 616866fcf4
commit 6c21789aed

View File

@ -15,6 +15,7 @@ struct SPDLOG_API log_msg
log_msg(source_loc loc, string_view_t logger_name, level::level_enum lvl, string_view_t msg);
log_msg(string_view_t logger_name, level::level_enum lvl, string_view_t msg);
log_msg(const log_msg &other) = default;
log_msg &operator=(const log_msg &other) = default;
string_view_t logger_name;
level::level_enum level{level::off};