From 7b8747ce21140518c7b16885b01ec9b029e0ea8b Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Thu, 2 Nov 2017 13:02:04 +0100 Subject: [PATCH] Collect thread names on osx, iphone. --- common/TracySystem.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/TracySystem.hpp b/common/TracySystem.hpp index 8b753cfb..5c01ba7d 100644 --- a/common/TracySystem.hpp +++ b/common/TracySystem.hpp @@ -2,7 +2,7 @@ #define __TRACYSYSTEM_HPP__ #ifdef TRACY_ENABLE -# if defined __ANDROID__ || defined __CYGWIN__ +# if defined __ANDROID__ || defined __CYGWIN__ || defined __MACOSX__ || defined __IPHONE__ # define TRACY_COLLECT_THREAD_NAMES # endif #endif