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;