From e612c2674ddedf4efde07bf2d24be2dc1a69ef85 Mon Sep 17 00:00:00 2001 From: "Igor S. Gerasimov" Date: Wed, 26 Nov 2025 13:32:02 +0100 Subject: [PATCH] Use std::string instead of std::format: Apple Clang 15 does not support it --- profiler/helpers/embed.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/profiler/helpers/embed.cpp b/profiler/helpers/embed.cpp index 7c926c68..1e84a10a 100644 --- a/profiler/helpers/embed.cpp +++ b/profiler/helpers/embed.cpp @@ -1,6 +1,6 @@ -#include #include #include +#include #include "../../public/common/tracy_lz4hc.hpp" @@ -43,7 +43,7 @@ int main( int argc, char** argv ) const auto lz4sz = tracy::LZ4_compress_HC( (const char*)data, (char*)lz4data, sz, lz4szMax, 6 ); delete[] data; - FILE* hdr = fopen( std::format( "{}.hpp", destination ).c_str(), "wb" ); + FILE* hdr = fopen( ( std::string(destination) + ".hpp" ).c_str(), "wb" ); fprintf( hdr, "// This file is generated by embed tool, do not modify\n" ); fprintf( hdr, "// Source: %s\n\n", source ); fprintf( hdr, "#pragma once\n\n" ); @@ -56,7 +56,7 @@ int main( int argc, char** argv ) fprintf( hdr, "}\n" ); fclose( hdr ); - FILE* cpp = fopen( std::format( "{}.cpp", destination ).c_str(), "wb" ); + FILE* cpp = fopen( ( std::string(destination) + ".cpp" ).c_str(), "wb" ); fprintf( cpp, "// This file is generated by embed tool, do not modify\n" ); fprintf( cpp, "// Source: %s\n\n", source ); fprintf( cpp, "#include \"%s.hpp\"\n\n", destination );