git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@255611
91177308-0d34-0410-b5e6-
96231b3b80d8
#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