error: unused parameter

来源:互联网 发布:设计师 知乎 编辑:程序博客网 时间:2024/05/29 04:21


error: unused parameter

error: unused variable


fixed them as follow :
void foo(int a) {
    (void)a;
    // ...
}




阅读全文
0 0