X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/7b4138e2840d3c8b8eb7433da68ae38ea75e1abe..ce00f59b5b169752d2f05ce3bb1a88ddc1b38b4c:/tests/benchmarks/printfbench.cpp diff --git a/tests/benchmarks/printfbench.cpp b/tests/benchmarks/printfbench.cpp index 7ee4cf9314..1a7d006052 100644 --- a/tests/benchmarks/printfbench.cpp +++ b/tests/benchmarks/printfbench.cpp @@ -6,7 +6,7 @@ // Created: 27/3/2006 // RCS-ID: $Id$ // Copyright: (c) 2006-2009 Francesco Montorsi -// Licence: wxWindows license +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// /* @@ -62,15 +62,15 @@ const wxString g_verylongString = #define DO_LONG_BENCHMARK(fnc, prefix) \ fnc(buffer, BUFSIZE, \ prefix##"This is a reasonably long string with various %s arguments, exactly %d, " \ - "and is used as benchmark for %s - %% %.2f %d %s", \ - "(many!!)", 6, "this program", 23.342f, 999, \ + prefix##"and is used as benchmark for %s - %% %.2f %d %s", \ + prefix##"(many!!)", 6, "this program", 23.342f, 999, \ (const char*)g_verylongString.c_str()); #define DO_LONG_POSITIONAL_BENCHMARK(fnc, prefix) \ fnc(buffer, BUFSIZE, \ prefix##"This is a %2$s and thus is harder to parse... let's %1$s " \ - "for our benchmarking aims - %% %3$f %5$d %4$s", \ - "test it", "string with positional arguments", 23.342f, \ + prefix##"for our benchmarking aims - %% %3$f %5$d %4$s", \ + prefix##"test it", "string with positional arguments", 23.342f, \ (const char*)g_verylongString.c_str(), 999); #define DO_BENCHMARK(fnc, prefix) \