From 22ef78333d308adff39e2cc098a58766dd0bac85 Mon Sep 17 00:00:00 2001 From: Logan Buchy Date: Fri, 5 Jun 2020 21:30:16 -0700 Subject: [PATCH] Fix missing comma in ZoneScopedNCS macro --- Tracy.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tracy.hpp b/Tracy.hpp index 7636578e..6425356e 100644 --- a/Tracy.hpp +++ b/Tracy.hpp @@ -150,7 +150,7 @@ # define ZoneScopedS( depth ) ZoneNamedS( ___tracy_scoped_zone, depth, true ) # define ZoneScopedNS( name, depth ) ZoneNamedNS( ___tracy_scoped_zone, name, depth, true ) # define ZoneScopedCS( color, depth ) ZoneNamedCS( ___tracy_scoped_zone, color, depth, true ) -# define ZoneScopedNCS( name, color, depth ) ZoneNamedNCS( ___tracy_scoped_zone, name, color depth, true ) +# define ZoneScopedNCS( name, color, depth ) ZoneNamedNCS( ___tracy_scoped_zone, name, color, depth, true ) # define TracyAllocS( ptr, size, depth ) tracy::Profiler::MemAllocCallstack( ptr, size, depth ); # define TracyFreeS( ptr, depth ) tracy::Profiler::MemFreeCallstack( ptr, depth );