【发布时间】:2012-09-07 17:03:00
【问题描述】:
假设我正在使用与 DOxygen/Visual Studio 兼容的 cmets 记录成员函数,我如何使用小于 '
例如,如果我这样做:
/// <summary>
/// Verifies x < y
/// </summary>
bool VerifyIsLessThan(float x, float y);
编译器说:
1>c:\MyProject\VerificationLib.h(246) : warning C4635: XML document comment applied to 'VerificationLib.VerifyIsLessThan(System.Single,System.Single)': badly-formed XML: Whitespace is not allowed at this location.
有没有什么办法可以让它在代码库和 Doxygen 生成的文档中仍然可读?
[编辑]
我开始认为这更多地与视觉工作室方面有关,而不是 Doxygen。我们正在使用一种应该对两者都适用的表单。原始问题中提到的警告来自视觉工作室而不是 Doxygen。
再深入一点,看起来逐字不直接supported?
【问题讨论】:
标签: visual-studio-2008 doxygen documentation-generation