-
-
Notifications
You must be signed in to change notification settings - Fork 293
C++函数注释无法提取带有引用符号&的参数 #379
Copy link
Copy link
Closed
Description
#325 类似
描述bug(必填)
C++函数注释无法提取带有引用符号&的参数
注释设置(必填):
和此issue相关的都是默认
你得到的注释(必填):
/**
* @brief
* @param [*]
* @return [*]
*/
void test(const std::string& temp) {
}预期的行为(必填):
`/**
* @brief
* @param [string&] temp
* @return [*]
*/
void test(const std::string& temp) {
}问题相关(选填)
#325 中添加识别了 * 符号,还需要在正则中添加 &
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels