move log_msg to details namespace

This commit is contained in:
gabime
2014-03-28 19:03:24 +03:00
parent 40acfdfbc2
commit c09df09b9c
10 changed files with 43 additions and 46 deletions

View File

@@ -72,7 +72,7 @@ public:
private:
logger* _callback_logger;
c11log::log_msg _log_msg;
log_msg _log_msg;
details::stack_oss _oss;
bool _enabled;

View File

@@ -28,9 +28,6 @@ inline std::tm localtime()
return localtime(now_t);
}
inline bool operator==(const std::tm& tm1, const std::tm& tm2)
{
return (tm1.tm_sec == tm2.tm_sec &&

View File

@@ -3,7 +3,7 @@
#include <array>
#include <vector>
#include <algorithm>
#include <cstring>
// Fast memory storage
// stores its contents on the stack when possible, in vector<char> otherwise