1

我试图使用 doxygen 在 C 中记录枚举值。

我的整个项目文档构建良好(包括使用相同格式文档的结构成员文档),直到我尝试为枚举值添加文档。

当我尝试这样做时,doxygen 运行没有错误,但尝试制作 PDF 会导致 MiKTex 在 makeindex 失败,因为通用索引处理器意外停止。如果我让构建在此之后继续,它似乎会陷入某种无限循环,因为构建永远不会结束......

我目前如何尝试记录枚举值:

/** @file filename.h
 *  @brief some description
 */

// Other documented code that builds fine...

/** A type that allows selection of a bar snsr (This builds fine also). */
typedef enum foo {
    barA = 0,           /**< Bar snsr A (either of these cause the build error). */
    barB = 1,           /**< Bar snsr B (either of these cause the build error). */
    numberOfBars = 2
} foo_t;

错误构建的屏幕截图: 生成错误的屏幕截图 我在 win7 64 位上构建

这似乎只是一个问题,因为我将 doxygen 从 1.8.4 升级到 1.8.8

有没有其他人见过类似的?也许有一个修复?谢谢

4

1 回答 1

0

这在较新版本的 doxygen 中得到了解决,特别是我目前正在使用 1.8.9.1 没有这个问题。

于 2015-02-16T15:09:19.680 回答