Attempt to unbreak buildbots.

It is currently failing with "'__uncaught_exception': identifier not found"
error. I guess it is due to r246219 because after that change, eh.h is
included only when threading is enabled.

llvm-svn: 246416
This commit is contained in:
Rui Ueyama 2015-08-31 06:19:01 +00:00
parent e84f671830
commit a41a367056

View File

@ -22,7 +22,7 @@
#include <mutex>
#include <stack>
#ifdef _MSC_VER
#if defined(_MSC_VER) && LLVM_ENABLE_THREADS
#include <concrt.h>
#include <ppl.h>
#endif