From b18796c1c0f11b460a5f436107d19e22ae7f08c3 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Thu, 8 Aug 2024 19:52:47 +0200 Subject: [PATCH] Add text formatting function to test. --- test/test.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/test/test.cpp b/test/test.cpp index bcfccde4..fe1a4587 100644 --- a/test/test.cpp +++ b/test/test.cpp @@ -16,6 +16,7 @@ struct static_init_test_t static_init_test_t() { ZoneScoped; + ZoneTextF( "Static %s", "init test" ); new char[64*1024]; } };