error: return-statement with a value, in function returning 'void' [-fpermissive] return IP2_stack_conf;
时间: 2024-04-05 14:31:55 浏览: 238
Function Parameters Returning Values.rar_C++_MM4L_grain3ne_retur
这个错误提示是因为在一个返回类型为 `void` 的函数中使用了带返回值的 `return` 语句。在 C++ 中,当一个函数的返回类型为 `void` 时,它不能有返回值。因此,你需要检查你的代码中,所有返回类型为 `void` 的函数,确保其中没有带返回值的 `return` 语句。如果需要返回值,你需要将函数的返回类型修改为对应的类型。
阅读全文