log_msg to contain logger_name + astyle

This commit is contained in:
gabime
2014-05-09 18:00:10 +03:00
parent d2178160b0
commit f9f59a545c
7 changed files with 19 additions and 19 deletions

View File

@@ -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 {