mirror of
https://github.com/KjellKod/g3log.git
synced 2024-12-13 10:42:56 +01:00
Fix missing include files
This commit is contained in:
parent
3aab24d8c8
commit
b8f28d3a49
@ -11,6 +11,7 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
|
#include <intrin.h>
|
||||||
#include <csignal>
|
#include <csignal>
|
||||||
#include <sstream>
|
#include <sstream>
|
||||||
#include <atomic>
|
#include <atomic>
|
||||||
|
@ -19,7 +19,7 @@ namespace g3 {
|
|||||||
virtual ~FileSink();
|
virtual ~FileSink();
|
||||||
|
|
||||||
void fileWrite(LogMessageMover message);
|
void fileWrite(LogMessageMover message);
|
||||||
std::string changeLogFile(const std::string &directory, const std::string &logger_id="g3log");
|
std::string changeLogFile(const std::string &directory, const std::string &logger_id);
|
||||||
std::string fileName();
|
std::string fileName();
|
||||||
|
|
||||||
|
|
||||||
|
@ -26,6 +26,7 @@
|
|||||||
#include "g3log/logmessage.hpp"
|
#include "g3log/logmessage.hpp"
|
||||||
|
|
||||||
#include <string>
|
#include <string>
|
||||||
|
#include <cstdarg>
|
||||||
#include <functional>
|
#include <functional>
|
||||||
|
|
||||||
|
|
||||||
|
@ -23,7 +23,7 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <string>
|
#include <string>
|
||||||
|
#include <algorithm>
|
||||||
|
|
||||||
// Levels for logging, made so that it would be easy to change, remove, add levels -- KjellKod
|
// Levels for logging, made so that it would be easy to change, remove, add levels -- KjellKod
|
||||||
struct LEVELS {
|
struct LEVELS {
|
||||||
|
@ -20,6 +20,7 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <memory>
|
#include <memory>
|
||||||
|
#include <utility>
|
||||||
#include <type_traits>
|
#include <type_traits>
|
||||||
|
|
||||||
namespace std2 {
|
namespace std2 {
|
||||||
|
@ -9,6 +9,8 @@
|
|||||||
#include "g3log/logmessage.hpp"
|
#include "g3log/logmessage.hpp"
|
||||||
#include "g3log/crashhandler.hpp"
|
#include "g3log/crashhandler.hpp"
|
||||||
#include "g3log/time.hpp"
|
#include "g3log/time.hpp"
|
||||||
|
#include "g3log/std2_make_unique.hpp"
|
||||||
|
#include <algorithm>
|
||||||
#include <mutex>
|
#include <mutex>
|
||||||
|
|
||||||
namespace {
|
namespace {
|
||||||
|
Loading…
Reference in New Issue
Block a user