| 19 | namespace { |
| 20 | template <std::floating_point F> |
| 21 | std::string format_test_parameter(const std::complex<F>& arg, |
| 22 | [[maybe_unused]] const int counter) { |
| 23 | std::ostringstream oss; |
| 24 | oss << arg.real() << '+' << arg.imag() << 'i'; |
| 25 | return oss.str(); |
| 26 | } |
| 27 | } // namespace |
| 28 | |
| 29 | } // namespace boost::inline ext::ut |