Added missing standard header includes.

This commit is contained in:
Kevin M. Godby
2016-02-24 22:20:07 -06:00
parent 196689f720
commit 077c3095eb
22 changed files with 60 additions and 15 deletions

View File

@@ -13,6 +13,7 @@
#include <android/log.h>
#include <mutex>
#include <string>
namespace spdlog
{

View File

@@ -15,9 +15,7 @@
#include <spdlog/common.h>
#include <spdlog/details/log_msg.h>
#include <string>
#include <mutex>
#include <atomic>
namespace spdlog
{

View File

@@ -13,7 +13,7 @@
#include <algorithm>
#include <memory>
#include <mutex>
#include <list>
#include <vector>
namespace spdlog
{

View File

@@ -10,7 +10,12 @@
#include <spdlog/details/file_helper.h>
#include <spdlog/details/format.h>
#include <algorithm>
#include <chrono>
#include <cstdio>
#include <ctime>
#include <mutex>
#include <string>
namespace spdlog
{

View File

@@ -10,7 +10,6 @@
#include <ostream>
#include <mutex>
#include <memory>
namespace spdlog
{

View File

@@ -9,6 +9,7 @@
#include <spdlog/details/null_mutex.h>
#include <iostream>
#include <memory>
#include <mutex>
namespace spdlog