Update log_msg_buffer.h

This commit is contained in:
Gabi Melman 2019-09-19 12:02:59 +03:00 committed by GitHub
parent b3fb4c1265
commit 2331750b58
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 3 deletions

View File

@ -8,14 +8,13 @@
namespace spdlog { namespace spdlog {
namespace details { namespace details {
// extend log_msg with internal buffer to store its payload. // Extend log_msg with internal buffer to store its payload.
// this is needed since log_msg holds string_views that points to stack data. // THis is needed since log_msg holds string_views that points to stack data.
class log_msg_buffer : public log_msg class log_msg_buffer : public log_msg
{ {
memory_buf_t buffer; memory_buf_t buffer;
void update_string_views(); void update_string_views();
public: public:
log_msg_buffer() = default; log_msg_buffer() = default;
explicit log_msg_buffer(const log_msg &orig_msg); explicit log_msg_buffer(const log_msg &orig_msg);