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
When I parse a function that's including a custom type based on enum.IntEnum with sphinx-autoapi,
I get this warning:
/workspace/docstring of converters.ros_streamer.VerbosityLevel:1: WARNING: Unparseable C++ cross-reference: 'enum.IntEnum'
Error in cross-reference.
If shorthand ref:
Invalid C++ declaration: Expected identifier in nested name, got keyword: enum [error at 4]
enum.IntEnum
----^
If full function ref:
Error when parsing function declaration.
If the function has no return type:
Error in declarator or parameters-and-qualifiers
Invalid C++ declaration: Expected identifier in nested name, got keyword: enum [error at 4]
enum.IntEnum
----^
If the function has a return type:
Invalid C++ declaration: Expected identifier in nested name. [error at 4]
enum.IntEnum
----^
# conf.py# I'm configuring autoapi_dirs to include the referenced code directory...autoapi_generate_api_docs=Falseautoapi_python_use_implicit_namespaces=Trueautoapi_python_class_content="both"autodoc_typehints="description"
The text was updated successfully, but these errors were encountered:
When I parse a function that's including a custom type based on enum.IntEnum with sphinx-autoapi,
I get this warning:
The code looks like this:
Version info
Python: 3.8
Sphinx: 7.1.2
sphinx-autoapi: 3.3.2
config
The text was updated successfully, but these errors were encountered: