GCC::is_ame_v<int,T&>;不能在常量表达式中使用

GCC: #39;std::is_same_vlt;int, Tgt;#39; is not usable in a constant expression(GCC::is_ame_vlt;int,T;不能在常量表达式中使用)

本文介绍了GCC::is_ame_v<int,T&>;不能在常量表达式中使用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

正在尝试实现the following code:

template <typename R, typename V>
concept SizedRangeOf = 
    std::ranges::sized_range<R> &&
    std::same_as<std::ranges::range_value_t<R>, V>;

template<typename T>
const SizedRangeOf<T> auto getView(std::vector<T>& vec) {
    // helper class
    class vector_view {
        std::vector<T>& vec;
    public:
        vector_view(std::vector<T>& vec): vec(vec) {}
        auto begin() const { return vec.begin(); }
        auto end() const { return vec.end(); }
        std::size_t size() const { return vec.size(); }
    };
    return vector_view { vec };
}

int main() {
    std::vector<int> v = {1, 3, 5};
    auto r = getView(v);
    v.push_back(7);
    for(auto val: r) {
        std::cout << val << ' '; // 1 3 5 7
    }
}

在Clang 11.0中编译和工作正常,但在GCC 10.2中失败,并出现以下错误:

the value of 'std::is_same_v<int, T>' is not usable in a constant expression

是GCC的虫子吗?还是代码有问题?

推荐答案

似乎是GCC bug:

错误97402-依赖部分概念id的值在常量表达式中不可用。

编辑2022年2月4日:Bug is fixed in GCC 11.1


Playing with the same code尝试在GCC中编译时会导致'internal compiler error: Segmentation fault',这是一个在Clang中编译得很好的代码。

编辑2022年2月4日:Also fixed in GCC 11.1


Another attempt to play with the code导致std::is_same计算为false,而Clang将其计算为true

编辑2022年2月4日:Also fixed in GCC 11.1

Implementing our own is_same也无济于事。

编辑2022年2月4日:Also fixed in GCC 11.1


但需要注意的是,使用std::same_as作为概念的一部分,用于参数声明works fine。

这篇关于GCC::is_ame_v&lt;int,T&>;不能在常量表达式中使用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本文标题为:GCC::is_ame_v&lt;int,T&>;不能在常量表达式中使用

基础教程推荐