No parallel execution on emscripten.

This commit is contained in:
Bartosz Taudul 2022-08-08 18:41:06 +02:00
parent d63d1c9e7f
commit 4cd36ecdea
No known key found for this signature in database
GPG Key ID: B7FE2008B7575DF3

View File

@ -2,7 +2,7 @@
#define __TRACYSORT_HPP__
#ifndef NO_PARALLEL_SORT
# if !defined __APPLE__ && ( ( defined _MSC_VER && _MSVC_LANG >= 201703L ) || __cplusplus >= 201703L )
# if !defined __APPLE__ && !defined __EMSCRIPTEN__ && ( ( defined _MSC_VER && _MSVC_LANG >= 201703L ) || __cplusplus >= 201703L )
# if __has_include(<execution>)
# include <algorithm>
# include <execution>