| 16 | namespace af { |
| 17 | |
| 18 | features::features() : feat{} { AF_THROW(af_create_features(&feat, 0)); } |
| 19 | |
| 20 | features::features(const size_t n) : feat{} { |
| 21 | AF_THROW(af_create_features(&feat, (int)n)); |
nothing calls this directly
no test coverage detected