When declaring a static variable in a member function, something is wrong with VA:
- the tooltip for the variable shows the definition without the static keyword (but with an added space in front)
- hovering over the variable causes the HCB to show "static"
- the definition bar although gets it right
try:
void afunction()
{
static char buf[100];
// some more code here...
}