From 344cb15fb5c20ae6f919fd3b5dbf6afa8c37150a Mon Sep 17 00:00:00 2001 From: sowle Date: Wed, 27 Dec 2023 02:16:54 +0100 Subject: [PATCH] attempt to fix gcc compilation --- tests/functional_tests/crypto_tests_performance.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/functional_tests/crypto_tests_performance.h b/tests/functional_tests/crypto_tests_performance.h index 6b82417b..6955c8d9 100644 --- a/tests/functional_tests/crypto_tests_performance.h +++ b/tests/functional_tests/crypto_tests_performance.h @@ -1049,7 +1049,7 @@ struct pme_runner_t : public pme_runner_i : testname(testname_) , pip_partition_bits_c(pip_partition_bits_c) { - testname += std::string(", ") + std::string(typeid(selector_t).name()).erase(0, 11) + std::string(", c = ") + epee::string_tools::num_to_string_fast(pip_partition_bits_c); + testname += std::string(", ") + std::string(typeid(typename selector_t).name()).erase(0, 11) + std::string(", c = ") + epee::string_tools::num_to_string_fast(pip_partition_bits_c); std::cout << testname << ENDL; } virtual ~pme_runner_t()