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
/home/antoine/arrow/docs/source/cpp/api/array.rst:72:Error in type declaration.
If typedef-like declaration:
Type must be either just a name or a typedef-like declaration.
If just a name:
Invalid definition: Expected end of definition. [error at 19]
arrow::Date64Array = typedef NumericArray<Date64Type>
-------------------^
If typedef-like declaration:
Error in declarator or parameters and qualifiers
If pointer to member declarator:
Invalid definition: Expected identifier in nested name. [error at 19]
arrow::Date64Array = typedef NumericArray<Date64Type>
-------------------^
If declarator-id:
Invalid definition: Expected identifier in nested name. [error at 19]
arrow::Date64Array = typedef NumericArray<Date64Type>
-------------------^
If type alias or template alias:
Invalid definition: Expected identifier in nested name, got keyword: typedef [error at 28]
arrow::Date64Array = typedef NumericArray<Date64Type>
----------------------------^
The text was updated successfully, but these errors were encountered:
Fyi, I just closed #316, assuming it is resolved. As noted above it was a tad vague, this one is not. It is likely Breathe still mangles the declaration. Leaving this open.
This might be fixed with #512, released in Breathe v4.17.0. Note that you also need Sphinx 3.x for recent Breathe versions. Could someone try and post results?
Given the following C++ declarations:
(note the
Date64Type
andNumericArray
classes are documented in other headers)and the following directives:
I get the following error:
The text was updated successfully, but these errors were encountered: