Il2CppDumper
Il2CppDumper copied to clipboard
Abstract declaration is not allowed here
请注意:如果你没有提供以下所有信息我将会直接无视并关闭这个issue
- 问题描述 我发现了两个比较有意思的字段名 "_cs", "_ds" 当指针类型的变量使用这些字段名的时候ida就会出现错误
- ERROR Abstract declaration is not allowed here Syntax error near: }
但是 "__cs" 却不会, 建议将这些名字列入specialKeywords
class xxx {
int32_t* _cs;
int32_t* _ds;
};