gpt4 book ai didi

c++ - 为什么 [[maybe_unused]] 在捕获的列表中是不可能的?

转载 作者:行者123 更新时间:2023-12-04 08:18:30 25 4
gpt4 key购买 nike

我想知道为什么我不能在 lambda 的捕获列表中使用 [[maybe_unused]] 属性。是否有原因不能将捕获的列表的变量标记为 [[maybe_unused]]?这将避免捕获所有变量,意思是 [&],在这种情况下:

auto lambda = [&x, [[maybe_unused]] &y](){ 
if constexpr( x >= 0) {
return x;
}
else {
return y;
}
}
在 x >= 0 的每种情况下,都会有一个编译器警告不使用 y。但如果 x < 0,则没有警告。我的第一次尝试是使用 [[maybe_unused]],但这是不可能的。
我的问题:有没有原因,为什么我不能在 lambda 的捕获列表中使用 [[maybe_unused]] 属性?

最佳答案

我在邮件列表上问了同样的问题。 answer from Arthur O'Dwyer曾是:

Ah, yes, that would be a place where [[maybe_unused]] might apply.However, for now, you can easily write

(void)a;

to suppress the warning: https://godbolt.org/z/7ZHSYz That's lesscluttering to the code (thus easier to read and maintain), and alsoworks in existing compilers (thus easier to deploy).

"Yeah, but using this logic, isn't [[maybe_unused]] completelyredundant and unnecessary and should never have been standardized?"AFAIK, yes.

关于c++ - 为什么 [[maybe_unused]] 在捕获的列表中是不可能的?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65594612/

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