issue 9
(识别的类型中有多余的空格) reported by xushiweizh
- int f();
对于这样一个语句,返回值被识别为"int ",而不是"int"。在其他场景(例如函数参数
类型)也是一样。
int f();
对于这样一个语句,返回值被识别为"int ",而不是"int"。在其他场景(例如函数参数
类型)也是一样。
27 hours ago
issue 8
(不能正确 parse 模板基类) reported by xushiweizh
- template <
class KeyT, class DataT,
class HashCompT = HashCompare<KeyT>,
class AllocT = DefaultAlloc
>
class HashMap : public PHashMap<KeyT, DataT, HashCompT, AllocT>
{
};
如上代码,不能正确识别符号:PHashMap<KeyT, DataT, HashCompT, AllocT>
template <
class KeyT, class DataT,
class HashCompT = HashCompare<KeyT>,
class AllocT = DefaultAlloc
>
class HashMap : public PHashMap<KeyT, DataT, HashCompT, AllocT>
{
};
如上代码,不能正确识别符号:PHashMap<KeyT, DataT, HashCompT, AllocT>