Type conversion at template non-type argument without constexpr

前端 未结 3 1534
天涯浪人
天涯浪人 2021-01-13 04:55

Consider the following code:

struct A {
    constexpr operator int() { return 42; }
};

template 
void foo() {}

void bar(A a) {
    foo(         


        
3条回答
提交回复
热议问题