【发布时间】:2023-04-04 15:36:01
【问题描述】:
使用Eclipse编码时,如何关闭启动多行注释时出现的“*”cmets?
而不是看到这个,
/**
* Here is a comment
* some more
*/
我可以得到这个吗?
/**
Here is a comment
some more
*/
如果你想知道“/**”是因为我使用了 doxygen。
【问题讨论】:
-
为了记录,Doxygen 去除了 * 的,所以无论哪种方式都无所谓。
标签: c eclipse eclipse-cdt