Il2CppDumper icon indicating copy to clipboard operation
Il2CppDumper copied to clipboard

Abstract declaration is not allowed here

Open 1260zqs opened this issue 3 months ago • 0 comments

请注意:如果你没有提供以下所有信息我将会直接无视并关闭这个issue

  • 问题描述 我发现了两个比较有意思的字段名 "_cs", "_ds" 当指针类型的变量使用这些字段名的时候ida就会出现错误
  • ERROR Abstract declaration is not allowed here Syntax error near: }

但是 "__cs" 却不会, 建议将这些名字列入specialKeywords

class xxx  {
	int32_t* _cs;
	int32_t* _ds;
};

1260zqs avatar Sep 06 '25 05:09 1260zqs