gpt4 book ai didi

c++ - 警告 C4101 未引用的局部变量

转载 作者:太空宇宙 更新时间:2023-11-04 15:11:14 25 4
gpt4 key购买 nike

void func(char * param)
{
#ifdef _XYZ_
.....somecode here using param
#endif
.....lots of code here not using param
}

出现编译错误,我什至不想在代码中收到警告。

最佳答案

从 C++17 开始我们有了 maybe_unused attribute抑制未使用实体的警告:

void func([[maybe_unused]] char * param)
{
#ifdef _XYZ_
.....somecode here using param
#endif
}

关于c++ - 警告 C4101 未引用的局部变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59064600/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com