From 977afb27fbdf4e8fb325b0079a4ec4e0c47fa30e Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Thu, 21 Apr 2022 18:21:58 +0200 Subject: [PATCH] Cosmetics. --- server/TracySourceView.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/server/TracySourceView.cpp b/server/TracySourceView.cpp index 57e7fade..7a4d8bc3 100644 --- a/server/TracySourceView.cpp +++ b/server/TracySourceView.cpp @@ -3089,7 +3089,7 @@ void SourceView::RenderLine( const Tokenizer::Line& line, int lineNum, const Add RenderHwLinePart( cycles, retired, branchRetired, branchMiss, cacheRef, cacheMiss, 0, 0, 0, 0, ts ); } } - ImGui::SameLine( 0, 0); + ImGui::SameLine( 0, 0 ); const auto endPos = ImGui::GetCursorScreenPos(); const auto itemsWidth = ( endPos - startPos ).x; const auto fixedWidth = 17 * ts.x; @@ -3402,7 +3402,7 @@ void SourceView::RenderAsmLine( AsmLine& line, const AddrStat& ipcnt, const Addr RenderHwLinePart( cycles, retired, branchRetired, branchMiss, cacheRef, cacheMiss, 0, 0, 0, 0, ts ); } } - ImGui::SameLine( 0, 0); + ImGui::SameLine( 0, 0 ); const auto endPos = ImGui::GetCursorScreenPos(); const auto itemsWidth = ( endPos - startPos ).x; const auto fixedWidth = 17 * ts.x; @@ -3567,7 +3567,7 @@ void SourceView::RenderAsmLine( AsmLine& line, const AddrStat& ipcnt, const Addr startPos = ImGui::GetCursorScreenPos(); TextDisabledUnformatted( "[unknown]" ); } - ImGui::SameLine( 0, 0); + ImGui::SameLine( 0, 0 ); const auto endPos = ImGui::GetCursorScreenPos(); const auto itemsWidth = ( endPos - startPos ).x; const auto fixedWidth = 32 * ts.x;