From 8f509dd41a5e2fccb1d364fd469bb54ed2b13b78 Mon Sep 17 00:00:00 2001 From: Dmitry Ivanov Date: Mon, 11 May 2020 16:23:50 +0200 Subject: [PATCH] Make TracySourceView.cpp build with somewhat old clang This was the only issue preventing build on macOS High Sierra with whatever version of clang it has. --- server/TracySourceView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/TracySourceView.cpp b/server/TracySourceView.cpp index c161b0d3..46eb241c 100644 --- a/server/TracySourceView.cpp +++ b/server/TracySourceView.cpp @@ -1637,7 +1637,7 @@ uint64_t SourceView::RenderSymbolAsmView( uint32_t iptotal, unordered_flat_mapname ); } - fprintf( f, "; Tracy Profiler disassembly of symbol %s [%s]\n\n", symName, worker.GetCaptureProgram() ); + fprintf( f, "; Tracy Profiler disassembly of symbol %s [%s]\n\n", symName, worker.GetCaptureProgram().c_str() ); if( !m_atnt ) fprintf( f, ".intel_syntax\n\n" ); for( auto& v : m_asm )