Windows needs Windows.h instead of unidist.h.

This commit is contained in:
Axel Naumann 2016-02-05 17:13:55 +01:00 committed by sftnight
parent 8af1646f97
commit 14e101a3b1

View File

@ -12,7 +12,11 @@
#include <assert.h>
#include <errno.h>
#include <unistd.h>
#ifdef LLVM_ON_WIN32
# include <Windows.h>
#else
# include <unistd.h>
#endif
namespace cling {
namespace utils{