Le code suivant est-il légitime?
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;
Clang l'accepte, mais GCC et MSVC le rejettent.
L'erreur de GCC est:
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];
| ^~
Si ce type de code était OK, je pourrais couper pas mal d'utilisations de index_sequence
s.
_v
devrait être initialisé dans la liste d'initialisation, jusqu'à C ++ 17. Peut-être que quelque chose a changé en C ++ 20.
int
membre n'auront jamais un comportement indéfini" ". Je me demande si GCC ne fait pas ça, ou l'inverse ...