Is it possible to initialize a static const value outside of the constructor? Can it be initialized at the same place where member declarations are found?
cl
Just for the sake of completeness, I am adding about the static template member variables.
template struct X{ static T x; }; template T X::x = T(); int main(){ X x; }