Unverified Commit df962e5c authored by Gabi Melman's avatar Gabi Melman Committed by GitHub

Merge pull request #804 from DanielChabrowski/globals-include

Add missing include in console_globals.h
parents 2870afde 29901260
...@@ -8,6 +8,19 @@ ...@@ -8,6 +8,19 @@
#include <cstdio> #include <cstdio>
#include <mutex> #include <mutex>
#ifdef _WIN32
#ifndef NOMINMAX
#define NOMINMAX // prevent windows redefining min/max
#endif
#ifndef WIN32_LEAN_AND_MEAN
#define WIN32_LEAN_AND_MEAN
#endif
#include <windows.h>
#endif
namespace spdlog { namespace spdlog {
namespace details { namespace details {
struct console_stdout struct console_stdout
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment