1.类QNNPing.m 第93行到103行,check_compile_time调用,
error: expected parameter declarator
check_compile_time(sizeof(IPHeader) == 20);
....
....
可能解决方法:check_compile_time中的参数全部添加括号,如
check_compile_time(sizeof(IPHeader) == 20);
改为
check_compile_time((sizeof(IPHeader) == 20));

 

2.修改check_compile_time为__Check_Compile_Time可行。

 

相关文章:

  • 2021-11-08
  • 2022-01-31
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-08-12
  • 2022-03-08
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案