| 44 | } |
| 45 | |
| 46 | GCSFilter::GCSFilter(const Params& params) |
| 47 | : m_params(params), m_N(0), m_F(0), m_encoded{0} |
| 48 | {} |
| 49 | |
| 50 | GCSFilter::GCSFilter(const Params& params, std::vector<unsigned char> encoded_filter) |
| 51 | : m_params(params), m_encoded(std::move(encoded_filter)) |
nothing calls this directly
no test coverage detected