Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/wolfpld/tracy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorBartosz Taudul <wolf.pld@gmail.com>2017-11-15 01:24:40 +0300
committerBartosz Taudul <bartosz.taudul@game-lion.com>2017-11-15 12:56:19 +0300
commit540f71cfd60acfbf43288067a9445c3de2a95c38 (patch)
tree6df6ea9b2c0abedea1f5bbca6bdcee6474e058dd /test
parentc43eb29ce05bb94f92ebb5a70da07fe97ca481ff (diff)
Use new interface in test.
Diffstat (limited to 'test')
-rw-r--r--test/test.cpp3
1 files changed, 1 insertions, 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 ) );
}
}