1
0
Fork 0
forked from lthn/blockchain

attempt to fix gcc compilation

This commit is contained in:
sowle 2023-12-27 02:16:54 +01:00
parent e239389768
commit 344cb15fb5
No known key found for this signature in database
GPG key ID: C07A24B2D89D49FC

View file

@ -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<CT>).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()