You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
it would be great it cppinsights would show the initialization of non-local variables, which a compiler performs implicitly. I am referring to: https://en.cppreference.com/w/cpp/language/initialization#Non-local_variables
In the following code, a compiler will implicitly initialize X::i with 0. It would be neat, if cppinsights would show this.
namespaceX
{
int i;
}
intmain()
{
++X::i;
}
Best regards!
The text was updated successfully, but these errors were encountered:
Hey,
it would be great it cppinsights would show the initialization of non-local variables, which a compiler performs implicitly. I am referring to: https://en.cppreference.com/w/cpp/language/initialization#Non-local_variables
In the following code, a compiler will implicitly initialize
X::i
with0
. It would be neat, if cppinsights would show this.Best regards!
The text was updated successfully, but these errors were encountered: