| 24 | |
| 25 | public: |
| 26 | explicit Lut() = default; |
| 27 | explicit Lut(const T* rotated_query, size_t padded_dim, bool use_hacc = false) |
| 28 | : table_length_(padded_dim << 2) |
| 29 | , lut_(table_length_ * (static_cast<int>(use_hacc) + 1)) { |
nothing calls this directly
no test coverage detected