Чи законний наступний код?
template <int N>
class foo {
public:
constexpr foo()
{
for (int i = 0; i < N; ++i) {
v_[i] = i;
}
}
private:
int v_[N];
};
constexpr foo<5> bar;
Кланг приймає це, але GCC та MSVC відкидають це.
Помилка GCC:
main.cpp:15:18: error: 'constexpr foo<N>::foo() [with int N = 5]' called in a constant expression
15 | constexpr foo<5> bar;
| ^~~
main.cpp:4:15: note: 'constexpr foo<N>::foo() [with int N = 5]' is not usable as a 'constexpr' function because:
4 | constexpr foo()
| ^~~
main.cpp:4:15: error: member 'foo<5>::v_' must be initialized by mem-initializer in 'constexpr' constructor
main.cpp:12:9: note: declared here
12 | int v_[N];
| ^~
Якби цей код був у порядку, я міг би скоротити досить багато використання index_sequence
s.
_v
слід ініціалізувати у списку ініціалізації, поки C ++ 17. Можливо, щось змінено в C ++ 20.
int
члена ніколи не матиме визначеної поведінки ". Цікаво, чи GCC не робить цього сумісним, чи навпаки ...