开发平台(Platform): (Ex: Win10, Linux, ...)
linux
编译器(Ex: GCC, clang, VC++...)+目标环境(跟开发平台不同的话需列出)
gcc
额外使用到的函数库(Library Used): (Ex: OpenGL, ...)
问题(Question):
第一次用cppcheck 这个程式发现不管我如何写都会出现syntax error
程式码(Code):(请善用置底文网页, 记得排版,禁止使用图档)
例如
for(int i=1;i<3;i++)
printf("test");
或是
int i;
for(i=1;i<3;i++)
printf("test");
都一样, 我以前写mfc是没遇过
请问一下cppcheck的for loop要如何写才不会出现error?
补充说明(Supplement):