Fix missing include files

This commit is contained in:
Jiri Hoogland 2016-02-02 19:05:29 -05:00
parent 3aab24d8c8
commit b8f28d3a49
6 changed files with 7 additions and 2 deletions

View File

@ -11,6 +11,7 @@
#endif
#include <windows.h>
#include <intrin.h>
#include <csignal>
#include <sstream>
#include <atomic>

View File

@ -19,7 +19,7 @@ namespace g3 {
virtual ~FileSink();
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();

View File

@ -26,6 +26,7 @@
#include "g3log/logmessage.hpp"
#include <string>
#include <cstdarg>
#include <functional>

View File

@ -23,7 +23,7 @@
#endif
#include <string>
#include <algorithm>
// Levels for logging, made so that it would be easy to change, remove, add levels -- KjellKod
struct LEVELS {

View File

@ -20,6 +20,7 @@
#pragma once
#include <memory>
#include <utility>
#include <type_traits>
namespace std2 {

View File

@ -9,6 +9,8 @@
#include "g3log/logmessage.hpp"
#include "g3log/crashhandler.hpp"
#include "g3log/time.hpp"
#include "g3log/std2_make_unique.hpp"
#include <algorithm>
#include <mutex>
namespace {