Jakob Lykke Andersen
Jakob Lykke Andersen
The union directive is currently classified as an "item", similar to typedefs, enums, and enumerators. However, formally it is a class type (https://en.cppreference.com/w/cpp/language/type), and in terms of documentation I think...
See also #526. I couldn't find any indication on variables/functions being ``extern`` in the Doxygen XML. Is this a too-old-doxygen problem? Tested on version Doxygen version 1.8.13.
### Feature or Bugfix - Feature - Bugfix - Refactoring ### Purpose Currently, Intersphinx is performing lookups in inventories purely by string comparison. Unfortunately this does not work in general....
### Feature or Bugfix - Bugfix ### Purpose When ``toc_object_entries = True`` the nesting of the objects in the toctree seems to done based on the scoping rules of the...
### Describe the bug The entries added by ``toc_object_entries`` for Python (and other domains?) seems to use the scoping of the language to nest the toc entries, instead of how...
### Feature or Bugfix - Feature - Bugfix - Refactoring ### Purpose Introduce tagged names, as in the language, in the end fixing #7819. That is, ```rst .. c:struct:: A...
### Background As of now the C and C++ domains can parse attributes in declarations in different formats: - [C++11 style](https://en.cppreference.com/w/cpp/language/attributes), e.g., ``[[fallthrough]]`` - [GNU style](https://gcc.gnu.org/onlinedocs/gcc/Attribute-Syntax.html#Attribute-Syntax), e.g., ``__attribute__((__noreturn__))`` - User-defined...