From 540f71cfd60acfbf43288067a9445c3de2a95c38 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Tue, 14 Nov 2017 23:24:40 +0100 Subject: [PATCH] Use new interface in test. --- test/test.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/test.cpp b/test/test.cpp index 17777b03..1750a45c 100644 --- a/test/test.cpp +++ b/test/test.cpp @@ -9,8 +9,7 @@ void TestFunction() for(;;) { std::this_thread::sleep_for( std::chrono::milliseconds( 1 ) ); - ZoneScoped; - ZoneName( "Test function" ); + ZoneScopedN( "Test function" ); std::this_thread::sleep_for( std::chrono::milliseconds( 1 ) ); } }