2

我在将 constexpr 函数与 lambdas 一起使用时遇到了问题。以下代码是重现错误的最小版本:

#include <iostream>

constexpr unsigned bar(unsigned q) {
    return q;
}

template<unsigned N>
unsigned foo() {
    return N;
}

template<typename F>
void print(F f) {
    std::cout << f() << std::endl;
}

template<unsigned Q>
int stuff() {
    constexpr unsigned n = bar(Q);
    print([]() { return foo<n>(); });
}

int main() {
    stuff<13>();
}

编译时gcc version 4.6.3 (Ubuntu/Linaro 4.6.3-1ubuntu5)出现以下编译器错误:

constexpr_template.cpp: In lambda function:
constexpr_template.cpp:24:9:   instantiated from ‘stuff() [with unsigned int Q = 13u]::<lambda()>’
constexpr_template.cpp:24:2:   instantiated from ‘int stuff() [with unsigned int Q = 13u]’
constexpr_template.cpp:29:12:   instantiated from here
constexpr_template.cpp:24:32: error: no matching function for call to ‘foo()’
constexpr_template.cpp:24:32: note: candidate is:
constexpr_template.cpp:9:10: note: template<unsigned int N> unsigned int foo()

现在奇怪的是,如果constexpr unsigned n = bar(Q);改成constexpr unsigned n = Q;它就可以了。同样有效的是print([]() { return foo<bar(Q)>(); });......

这是 GCC 中的错误还是我做错了什么?

4

1 回答 1

0

Gcc 4.6 是第一个支持 constexpr 的版本,在发布此类功能时出现小错误并不罕见。您可以从 Coliru 上的这个 Live Example 中验证gcc 4.8.1 和 Clang 3.4 SVN 是否正确解析了您的代码。您可能应该相应地升级您的编译器。

于 2013-08-14T14:36:59.927 回答