NOLINTNEXTLINE(misc-no-recursion)
| 874 | |
| 875 | // NOLINTNEXTLINE(misc-no-recursion) |
| 876 | bool IsSolvable() const override |
| 877 | { |
| 878 | for (const auto& arg : m_subdescriptor_args) { |
| 879 | if (!arg->IsSolvable()) return false; |
| 880 | } |
| 881 | return true; |
| 882 | } |
| 883 | |
| 884 | // NOLINTNEXTLINE(misc-no-recursion) |
| 885 | bool HavePrivateKeys(const SigningProvider& arg) const override |
nothing calls this directly
no test coverage detected