Merge branch 'master' of github.com:KjellKod/g3log into mobileben_g3-shared-lib-typo

This commit is contained in:
Kjell Hedstrom 2017-05-17 14:05:58 -06:00
commit bd3da1eab9
4 changed files with 5 additions and 3 deletions

View File

@ -24,6 +24,7 @@
#include "g3log/loglevels.hpp"
#include "g3log/logcapture.hpp"
#include "g3log/logmessage.hpp"
#include "g3log/generated_definitions.hpp"
#include <string>
#include <functional>
@ -128,7 +129,7 @@ namespace g3 {
} // internal
} // g3
#define INTERNAL_LOG_MESSAGE(level) LogCapture(__FILE__, __LINE__, __PRETTY_FUNCTION__, level)
#define INTERNAL_LOG_MESSAGE(level) LogCapture(__FILE__, __LINE__, static_cast<const char*>(__PRETTY_FUNCTION__), level)
#define INTERNAL_CONTRACT_MESSAGE(boolean_expression) \
LogCapture(__FILE__, __LINE__, __PRETTY_FUNCTION__, g3::internal::CONTRACT, boolean_expression)

View File

@ -21,7 +21,7 @@
#include "g3log/sinkwrapper.hpp"
#include "g3log/sinkhandle.hpp"
#include "g3log/logmessage.hpp"
#include "g3log/generated_definitions.hpp"
using namespace std;
using namespace std2;

View File

@ -11,6 +11,7 @@
#include "g3log/logworker.hpp"
#include "testing_helpers.h"
#include "g3log/loglevels.hpp"
#include "g3log/generated_definitions.hpp"
#include <memory>
#include <string>

View File

@ -15,7 +15,7 @@
#include <chrono>
#include <string>
#include <future>
#include <g3log/generated_definitions.hpp>
#include "testing_helpers.h"
#include "g3log/logmessage.hpp"
#include "g3log/logworker.hpp"