You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug, including details regarding any error messages, version, and platform.
#44357 was merged yesterday and I noticed when building the docs locally that we get an error related to the particular Sphinx directive we used for ChunkLocation:
doxygenstruct: Cannot find class “arrow::ChunkLocation” in doxygen xml output for project “arrow_cpp” from directory: ../../cpp/apidoc/xml
ChunkLocation is a typedef/alias so it should use the doxygentypedef directive to be properly documented.
I originally filed a a minor PR for this, #44505, but am now creating an issue and updating the PR so we can track this alongside #34535 as a backport candidate (i.e., they should be cherry-picked together).
Component(s)
C++, Documentation
The text was updated successfully, but these errors were encountered:
…44505)
### Rationale for this change
Since ChunkLocation is a typedef/alias, it needs to use the `doxygentypedef` Sphinx directive rather than `doxygenstruct` in order for it to show up in the generated HTML. Otherwise we get an error.
### What changes are included in this PR?
Just docs:
- Replace `doxygenstruct` directive with `doxygentypedef`
- Remove `:members:` directive as it's not needed
### Are these changes tested?
Yes.
### Are there any user-facing changes?
Yes, though just docs.
* GitHub Issue: #44506
Authored-by: Bryce Mecum <[email protected]>
Signed-off-by: Bryce Mecum <[email protected]>
Describe the bug, including details regarding any error messages, version, and platform.
#44357 was merged yesterday and I noticed when building the docs locally that we get an error related to the particular Sphinx directive we used for ChunkLocation:
ChunkLocation is a typedef/alias so it should use the
doxygentypedef
directive to be properly documented.I originally filed a a minor PR for this, #44505, but am now creating an issue and updating the PR so we can track this alongside #34535 as a backport candidate (i.e., they should be cherry-picked together).
Component(s)
C++, Documentation
The text was updated successfully, but these errors were encountered: