pitrou commented on PR #45539: URL: https://github.com/apache/arrow/pull/45539#issuecomment-2662617807
Thanks @Shivani622 ! However, this didn't work because the `doxygengroup` directives must refer to actual Doxygen groups in the C++ docstrings. See error messages in this docs preview: http://crossbow.voltrondata.com/pr_docs/45539/cpp/api/compute.html (exemple: `doxygengroup: Cannot find group “compute-arithmetic” in doxygen xml output for project “arrow_cpp” from directory: /build/cpp/apidoc/xml`) The solution would be to add Doxygen group definitions corresponding to the APIs that should go into each category. You can find an example group definition here: https://github.com/apache/arrow/blob/a53a77c93217399c4fda8c6328db2c492a30b0b0/cpp/src/arrow/type_fwd.h#L477-L480 It ends with a corresponding closing brace (`@}`): https://github.com/apache/arrow/blob/a53a77c93217399c4fda8c6328db2c492a30b0b0/cpp/src/arrow/type_fwd.h#L685 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
