From c5ea9c744c755be578d71a37a79f2aee99f13daa Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Wed, 18 Oct 2017 18:50:42 +0200 Subject: [PATCH] Do not disable lz4 in debug builds. --- client/TracyProfiler.cpp | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/client/TracyProfiler.cpp b/client/TracyProfiler.cpp index bc6f39da..c6f448e5 100644 --- a/client/TracyProfiler.cpp +++ b/client/TracyProfiler.cpp @@ -27,10 +27,6 @@ #include "TracyProfiler.hpp" #include "TracyThread.hpp" -#ifdef _DEBUG -# define TRACY_DISABLE_LZ4 -#endif - #ifdef __GNUC__ #define init_order( val ) __attribute__ ((init_priority(val))) #else @@ -159,7 +155,7 @@ void Profiler::Worker() WelcomeMessage welcome; #ifdef TRACY_DISABLE_LZ4 - // notify client that lz4 compression is disabled (too slow in debug builds) + // notify client that lz4 compression is disabled welcome.lz4 = 0; #else welcome.lz4 = 1;