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
In the code I'm trying to document I have a C-function (plain C, no overloading of function names)
void PGAIntegerSetFixedEdges (PGAContext *ctx, size_t n, PGAInteger(*edge)[2], int symmetric)
It seems the data type PGAInteger(*edge)[2] causes that I'm getting the error:
Warning
doxygenfunction: Unable to resolve function “PGAIntegerSetFixedEdges” with arguments (PGAContext*, size_t, PGAInteger (*), int) in doxygen xml output for project “PGAPack” from directory: ./_doxygen/xml. Potential matches:
- void PGAIntegerSetFixedEdges(PGAContext *ctx, size_t n, PGAInteger (*edge)[2], int symmetric)
The Doxygen XML looks as follows:
<type>void</type>
<definition>void PGAIntegerSetFixedEdges</definition>
<argsstring>(PGAContext *ctx, size_t n, PGAInteger(*edge)[2], int symmetric)</argsstring>
<name>PGAIntegerSetFixedEdges</name>
<param>
<type><ref refid="structPGAContext" kindref="compound">PGAContext</ref> *</type>
<declname>ctx</declname>
</param>
<param>
<type>size_t</type>
<declname>n</declname>
</param>
<param>
<type><ref refid="group__const__datatype_1ga1b0e84726e05cb1bfece3064d78e45ae" kindref="member">PGAInteger</ref>(*)</type>
<declname>edge</declname>
<array>[2]</array>
</param>
<param>
<type>int</type>
<declname>symmetric</declname>
</param>
<briefdescription>
<para>Set edges that have to be present. </para>
</briefdescription>
Maybe this simply fails to parse the <array[2]</array> part in the XML?
The text was updated successfully, but these errors were encountered:
In the code I'm trying to document I have a C-function (plain C, no overloading of function names)
It seems the data type
PGAInteger(*edge)[2]
causes that I'm getting the error:The Doxygen XML looks as follows:
Maybe this simply fails to parse the
<array[2]</array>
part in the XML?The text was updated successfully, but these errors were encountered: