| 6 | namespace bh = boost::histogram; |
| 7 | |
| 8 | int main() { |
| 9 | // create static histogram with array_storage, using int as counter type |
| 10 | auto h = bh::make_static_histogram_with(bh::array_storage<int>(), |
| 11 | bh::axis::regular<>(10, 0, 1)); |
| 12 | |
| 13 | // do something with h |
| 14 | } |
| 15 | |
| 16 | //] |
nothing calls this directly
no test coverage detected