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
diff options
context:
space:
mode:
authorBartosz Taudul <wolf@nereid.pl>2022-09-29 21:56:09 +0300
committerBartosz Taudul <wolf@nereid.pl>2022-09-29 22:02:05 +0300
commit73fe208b974118f05d588032ee0b5fbef7fd37ff (patch)
tree93b062f98efd8415f95a368df7da45b8b9587ca3 /server/TracyView_Callstack.cpp
parentc8c198cae7d9937b20747790680d6557a7387c80 (diff)
Remove unused variable.
Diffstat (limited to 'server/TracyView_Callstack.cpp')
-rw-r--r--server/TracyView_Callstack.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/server/TracyView_Callstack.cpp b/server/TracyView_Callstack.cpp
index 0e8bc4e1..50dd956f 100644
--- a/server/TracyView_Callstack.cpp
+++ b/server/TracyView_Callstack.cpp
@@ -31,7 +31,6 @@ void View::DrawCallstackTable( uint32_t callstack, bool globalEntriesButton )
{
std::ostringstream s;
int fidx = 0;
- int bidx = 0;
for( auto& entry : cs )
{
char buf[64*1024];
@@ -65,8 +64,6 @@ void View::DrawCallstackTable( uint32_t callstack, bool globalEntriesButton )
if( match ) continue;
}
- bidx++;
-
if( f == fsz-1 )
{
ptr += sprintf( ptr, "%3i. ", fidx++ );