返回的通用lambda的参数据称是自由函数的阴影参数

时间:2016-12-18 13:31:14

标签: c++ gcc g++ c++14 gcc-warning

编译以下代码

template <typename X, typename F>
auto apply(X x, F f)
{
    return f(x);
}

template <typename Y>
auto add_value(Y y)
{
    return [y](auto x)
    {
        return x + y;
    };
}

int main()
{
    apply(1, add_value(2));
}

用g ++(例如v.5.4)给出shadow warnings

$ g++ -Wshadow -Werror -std=c++14 shadow_test.cpp 
shadow_test.cpp: In instantiation of ‘add_value(Y)::<lambda(auto:1)> [with auto:1 = int; Y = int]’:
shadow_test.cpp:4:13:   required from ‘auto apply(X, F) [with X = int; F = add_value(Y) [with Y = int]::<lambda(auto:1)>]’
shadow_test.cpp:18:26:   required from here
shadow_test.cpp:10:22: error: declaration of ‘int x’ shadows a parameter [-Werror=shadow]
     return [y](auto x)
                      ^
shadow_test.cpp:2:14: note: shadowed declaration is here
 auto apply(X x, F f)
              ^
cc1plus: all warnings being treated as errors

我不明白为什么。有人可以解释一下吗?

1 个答案:

答案 0 :(得分:7)

一定是个bug。

  • 变量没有被遮蔽,因为它不在lambda的封闭范围内,但是它produce the correct result
  • VS2015不会发出警告。
  • Clang不发出任何警告。

这是推测性的,但可能发生的是以下替代(或类似的东西):

#include <iostream>

template <typename X, typename Y>
auto add_value(X x, Y y)
{
    auto f = [y](auto x)
    {
        return x + y;
    };
    return f(x);
}

int main()
{
    std::cout << add_value(1, 2);
}

此程序does produce a shadow warning on Clang,但即便如此,它也会产生正确的结果。 VS2015仍然不认为这值得警告,但它可能是错误的,因为来自lambda的封闭范围的名称也在lambda的范围内。如果他们没有被捕获,他们可能会被使用,但可能不会像解释here那样使用。