Can virtual functions like X::f()
in the following code
struct X
{
constexpr virtual int f() const
{
return 0;
}
};
be constexpr
?
Can virtual functions like X::f()
in the following code
struct X
{
constexpr virtual int f() const
{
return 0;
}
};
be constexpr
?