1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00

Require MSVC 15.7 for <execution> support.

This commit is contained in:
Bartosz Taudul 2018-07-13 12:26:02 +02:00
parent e9a971bacf
commit 90a874f311

View File

@ -8,7 +8,7 @@
#include <mutex>
#include <string.h>
#if __has_include(<execution>)
#if __has_include(<execution>) && ( !defined _MSC_VER || _MSC_VER >= 1914 )
# include <execution>
#else
# include "tracy_pdqsort.h"