mirror of
https://github.com/gabime/spdlog.git
synced 2025-09-29 01:29:35 +08:00
log_msg to contain logger_name + astyle
This commit is contained in:
@@ -5,9 +5,7 @@
|
||||
#include <algorithm>
|
||||
#include <cstring>
|
||||
|
||||
// Fast memory storage
|
||||
// stores its contents on the stack when possible, in vector<char> otherwise
|
||||
// NOTE: User should be remember that returned buffer might be on the stack!!
|
||||
// Fast memory storage on the stack when possible or in std::vector
|
||||
namespace c11log
|
||||
{
|
||||
namespace details
|
||||
@@ -24,11 +22,6 @@ public:
|
||||
|
||||
stack_buf& operator=(const stack_buf& other) = delete;
|
||||
|
||||
stack_buf(const bufpair_t& buf_to_copy) :stack_buf()
|
||||
{
|
||||
append(buf_to_copy);
|
||||
}
|
||||
|
||||
stack_buf(const stack_buf& other)
|
||||
{
|
||||
_stack_size = other._stack_size;
|
||||
@@ -108,4 +101,4 @@ private:
|
||||
};
|
||||
|
||||
}
|
||||
} //namespace c11log { namespace details {
|
||||
} //namespace c11log { namespace details {
|
||||
|
Reference in New Issue
Block a user