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

Fix msvc builds when required c++ standard version is set to lower than c++17.

Also use latest available c++ standard which allows using older VS versions that only support c++14.
This commit is contained in:
Rokas Kupstys
2018-07-17 18:29:48 +03:00
parent ab8d2c553a
commit 5c75fe292f
4 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -8,7 +8,7 @@
#include <mutex>
#include <string.h>
#if __has_include(<execution>) && ( !defined _MSC_VER || _MSC_VER >= 1914 )
#if ( defined _MSC_VER && _MSVC_LANG >= 201703L ) || __cplusplus >= 201703L
# include <execution>
#else
# include "tracy_pdqsort.h"