Try to let r255604 have an effect.
[oota-llvm.git] / include / llvm / Support / ThreadPool.h
index 16f287e701dfdf8ee9fcfaf00361b6fb66ffd028..35dc20867a4edc7ea129b3cf20e475b0f001069f 100644 (file)
 
 #include "llvm/Support/thread.h"
 
+#ifdef _MSC_VER
+// concrt.h depends on eh.h for __uncaught_exception declaration
+// even if we disable exceptions.
+#include <eh.h>
+#endif
+
 #include <condition_variable>
 #include <functional>
 #include <future>
 #include <queue>
 #include <utility>
 
-#ifdef _MSC_VER
-// concrt.h depends on eh.h for __uncaught_exception declaration
-// even if we disable exceptions.
-#include <eh.h>
-#endif
-
 namespace llvm {
 
 /// A ThreadPool for asynchronous parallel execution on a defined number of