I have a base class that defined operator[], this operator doesn't appear in any derived class (unless it is explicitly redefined).
For example subarray defined operator[]: https://correaa.gitlab.io/boost-multi/multi/reference/boost/multi/subarray.html
array_ref derives from subarray, yet operator[] doesn't appear in its documentation.
I tried using ""copy-all", "reference", and "copy-dependency".
I am using this config file:
# MrDocs configuration for Boost.Multi
# https://github.com/cppalliance/mrdocs
source-root: include/
compilation-database: build-mrdocs/compile_commands.json
input:
- include/boost/multi/array_ref.hpp
- include/boost/multi/array.hpp
output: doc/modules/reference/pages
generator: adoc
multipage: true
extract-private: false
inherit-base-members: "copy-all"
base-url: https://gitlab.com/correaa/boost-multi/-/blob/develop/include/
include-symbols:
- "boost::multi"
exclude-symbols:
- "boost::multi::detail"
sort-members-by: location
sort-namespace-members-by: location
warn-no-paramdoc: false
verbose: true
full repo: https://gitlab.com/correaa/boost-multi
I have a base class that defined
operator[], this operator doesn't appear in any derived class (unless it is explicitly redefined).For example
subarraydefinedoperator[]: https://correaa.gitlab.io/boost-multi/multi/reference/boost/multi/subarray.htmlarray_refderives fromsubarray, yetoperator[]doesn't appear in its documentation.I tried using ""copy-all", "reference", and "copy-dependency".
I am using this config file:
full repo: https://gitlab.com/correaa/boost-multi