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

fix build warnings when compiling with clang-cl

This commit is contained in:
Elliot
2024-03-11 14:44:44 -04:00
parent 082c13ac8e
commit a26f076a0e
3 changed files with 2 additions and 3 deletions
+1 -1
View File
@@ -189,7 +189,7 @@ tracy_public_include_dirs = include_directories('public')
compiler = meson.get_compiler('cpp')
override_options = []
if compiler.get_id() != 'msvc'
if compiler.get_id() != 'msvc' and compiler.get_id() != 'clang-cl'
override_options += 'cpp_std=c++11'
endif