You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
AllocTensor.hpp:49:81: error: non-type template argument is not a constant expression
static_assert(hana::contains(decltype(hana::keys(map))(), hana::llong_c<lhs.getI()>));
Source code:
if constexpr (is_temp<std::remove_reference_t<Lhs> >) {
static_assert(hana::contains(decltype(hana::keys(map))(), hana::llong_c<lhs.getI()>));
}
rev: f79f4ac
Compile error:
Source code:
lhs.getI()是个temp_placeholder<1> &,lhs.getI()也是constexpr返回类型的函数,但是编译器不能正确识别。
The text was updated successfully, but these errors were encountered: