Fix empty additional info

does not work with wchar_t based string.
pull/2048/head
Wolfgang Petroschka 4 years ago
parent 119467c580
commit 388679b00e

@ -80,7 +80,7 @@ SPDLOG_INLINE void spdlog::async_logger::backend_flush_()
{
sink->flush();
}
SPDLOG_LOGGER_CATCH("")
SPDLOG_LOGGER_CATCH(string_view_t())
}
}

@ -203,7 +203,7 @@ SPDLOG_INLINE void logger::flush_()
{
sink->flush();
}
SPDLOG_LOGGER_CATCH("")
SPDLOG_LOGGER_CATCH(string_view_t())
}
}

Loading…
Cancel
Save