Given

struct X {};

constexpr auto x = X{};

struct S {
    static constexpr auto& rx = x;  
};

gcc 4.8 says

error: non-constant in-class initialization invalid for static member 'S::rx'

static constexpr auto& rx = x;  
                            ^

error: (an out of class initialization is required)

error: 'S::rx' cannot be initialized by a non-constant expression when being declared

I expect x to be a constant expression, suitable for such initialization. Is this a gcc bug? If not, what is going on here?

没有正确的解决方案

其他提示

This is a bug, and it seems to be already reported.

You may do the below instead:

struct X {};

const auto x = X{};

struct S {
    static constexpr auto& rx = x;  
};
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top