var names and some minor cleanups

This commit is contained in:
gabime
2014-03-22 16:26:08 +02:00
parent 8494590fb3
commit a287bccd40
5 changed files with 23 additions and 47 deletions

View File

@@ -38,12 +38,13 @@ public:
line_logger& operator=(const line_logger&) = delete;
line_logger& operator=(line_logger&&) = delete;
// The move ctor should only be called on start of logging line,
// where no logging happened yet for this line so no need to copy the string from the other
line_logger(line_logger&& other) :
_callback_logger(other._callback_logger),
// The move ctor should only be called on start of logging line,
// where no logging happened yet for this line so no need to copy the string from the other
_callback_logger(other._callback_logger),
_oss(),
_level(other._level) {};
_level(other._level),
_enabled(other._enabled) {}
~line_logger()