OSDN Git Service

Try to let r255604 have an effect.
authorNico Weber <nicolasweber@gmx.de>
Tue, 15 Dec 2015 03:14:19 +0000 (03:14 +0000)
committerNico Weber <nicolasweber@gmx.de>
Tue, 15 Dec 2015 03:14:19 +0000 (03:14 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@255611 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Support/ThreadPool.h

index 16f287e..35dc208 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