stats: define WIN32_LEAN_AND_MEAN when including windows.h

Reduce the amount of the header that we end up including in the build.  The
additional definitions are not necessary.

llvm-svn: 280146
This commit is contained in:
Saleem Abdulrasool 2016-08-30 20:15:46 +00:00
parent 6ca511439d
commit 000b071b07

View File

@ -16,6 +16,7 @@
//===----------------------------------------------------------------------===//
#ifdef _WIN32
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#else
#include <dlfcn.h>