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

@@ -6,9 +6,10 @@
#include <spdlog/common.h>
#include <string>
#include <cstdio>
#include <ctime>
#include <functional>
#include <string>
#ifdef _WIN32
# ifndef WIN32_LEAN_AND_MEAN
@@ -24,6 +25,7 @@
#include <sys/syscall.h> //Use gettid() syscall under linux to get thread id
#include <sys/stat.h>
#include <unistd.h>
#include <chrono>
#else
#include <thread>
#endif