繁体   English   中英

为什么在 consteval function 中使用的 std::reverse 确实编译但不是 constexpr

[英]Why does std::reverse used in consteval function does compile though not constexpr

在 CompilerExplorer 上使用这个小代码片段,std=c++20 for x86-64 clang 11.0.0 编译并运行。

#include <algorithm>
#include <array>

consteval std::array<double,2> gof()
{
    std::array<double,2> x{ 3., 2.};
    std::reverse(begin(x),end(x));
    return x;
}

int
main(int argc, char *argv[])
{
    return gof().at(0);
}

但是在具有相同设置的 CompilerExplorer 上的 clang-tidy 会产生

clang-tidy (trunk) #1 with x86-64 clang 11.0.0

<source>:14:12: error: call to consteval function 'gof' is not a constant expression [clang-diagnostic-error]
    return gof().at(0);
           ^
<source>:7:5: note: non-constexpr function 'reverse<double *>' cannot be used in a constant expression
    std::reverse(begin(x),end(x));
    ^
<source>:14:12: note: in call to 'gof()'
    return gof().at(0);
           ^
/opt/compiler-explorer/gcc-9.2.0/lib/gcc/x86_64-linux-gnu/9.2.0/../../../../include/c++/9.2.0/bits/stl_algo.h:1180:5: note: declared here
    reverse(_BidirectionalIterator __first, _BidirectionalIterator __last)
    ^

整洁的产量是我所期望的。 为什么 clang 处理方式不同?

std::reverse在 C++20 中是constexpr (问题标题另有暗示?),因此gof()中没有任何内容阻止它成为有效的常量表达式。

libstdc++ 实现了constexpr更改,而 libc++ 还没有。 因此,如果您使用 libstdc++(正如 clang 在 Compiler Explorer 上默认使用的那样),它会正常工作。 但是如果你显式地使用 libc++,那么它会因为你期望的原因而失败( std::reverse不是constexpr ,这使得gof()不能成为一个常量表达式)。 clang-tidy 看起来它使用的是旧版本的 libstdc++(您粘贴的错误为 9.2),这是在 libstdc++ 实施constexpr更改之前。

所以基本上,你只是跨越了constexpr支持的前沿。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM