使用新表达式的模板参数推断失败

时间:2018-05-22 23:59:26

标签: c++ c++17 template-deduction

我正在处理一个可变参数类模板,但我不能在没有指定模板参数的情况下使用新表达式(我不想)。我将问题减少到以下代码示例:

template <typename T>
struct Foo
{
    Foo(T p)
        : m(p)
    {}

    T m;
};

template <typename T1, typename T2>
struct Bar
{
    Bar(T1 p1, T2 p2)
        : m1(p1), m2(p2)
    {}

    T1 m1;
    T2 m2;
};

int main()
{
    double p = 0.;

    auto stackFoo = Foo(p);       // OK
    auto heapFoo = new Foo(p);    // OK

    auto stackBar = Bar(p, p);    // OK
    auto heapBar = new Bar(p, p); // error: class template argument deduction failed

    return 0;
}

根据我对cppreference的理解,编译器应该能够在上面的每种情况下推导出模板参数。我无法弄清楚为什么heapFoo也没有错误。

我在这里错过了一些东西吗?

我在Xubuntu 17.10上使用gcc 7.2.0并使用-std = c ++ 17标志。

1 个答案:

答案 0 :(得分:3)

巴里(Barry)题为"class template argument deduction fails in new-expression"的Bug 85883已针对GCC 9修复。

该错误未出现在GCC中继(DEMO)中。

作为GCC 7.2的解决方法,您可以使用如下所示的值初始化表格。 (DEMO):

auto heapBar = new Bar{p, p};