‘xxx‘defined but not used [-Werror=unused-function]

解决’xxx’defined but not used [-Werror=unused-function]方法

当Makefile中开了-Werror,而在编译文件时又不想把它去掉,可在未使用的函数开头添加__attribute__((unused)) ,则可正常编译

你可能感兴趣的:(linux,c++)