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。
相关文章