class C1
{
private:
void fun1(); // (1)
};
void C1::fun1() // (2)
{
}
The VA Outline displays specific private icon for line (1). But for line (2) the displayed icon is public-type icon, whereas this is implementation for private method.
This code snippet is too simple, but when class header is in .hpp file, and implementation is in .cpp, than looking at .cpp t is very desired to see whether this function public, protected or private.