Commit 5d7947df authored by Rupert Steel's avatar Rupert Steel

Fixed 2 macro redefinition warnings releated to WIN32_LEAN_AND_MEAN.

parent 1d8ac6de
...@@ -39,7 +39,9 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ...@@ -39,7 +39,9 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include <cstdarg> #include <cstdarg>
#ifdef _WIN32 #ifdef _WIN32
# define WIN32_LEAN_AND_MEAN # ifndef WIN32_LEAN_AND_MEAN
# define WIN32_LEAN_AND_MEAN
# endif
# ifdef __MINGW32__ # ifdef __MINGW32__
# include <cstring> # include <cstring>
# endif # endif
......
...@@ -29,8 +29,10 @@ ...@@ -29,8 +29,10 @@
#include<ctime> #include<ctime>
#ifdef _WIN32 #ifdef _WIN32
#define WIN32_LEAN_AND_MEAN # ifndef WIN32_LEAN_AND_MEAN
#include <Windows.h> # define WIN32_LEAN_AND_MEAN
# endif
# include <Windows.h>
#endif #endif
namespace spdlog namespace spdlog
......
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