I have this directive inside a class:
https://gitlab.com/correaa/boost-multi/-/blob/develop/include/boost/multi/array_ref.hpp#L251
struct A : private layout_type {
...
using typename layout_type::extent_type;
};
This type doesn't appear in the documentation, even though it's now public.
https://correaa.gitlab.io/boost-multi/multi/reference/boost/multi/array-0ad.html
I know I can put this in a different way so it appears in the documentation (using extent_type = layout_type::extent_type;), and I will do this as a workaround.
I have this directive inside a class:
https://gitlab.com/correaa/boost-multi/-/blob/develop/include/boost/multi/array_ref.hpp#L251
This type doesn't appear in the documentation, even though it's now public.
https://correaa.gitlab.io/boost-multi/multi/reference/boost/multi/array-0ad.html
I know I can put this in a different way so it appears in the documentation (
using extent_type = layout_type::extent_type;), and I will do this as a workaround.