I'm using the following macro to define class variables and accessors.
#define DEFINE_BOOL_VAL(x) \ private: bool m_b##x; \ public: bool x () { return m_b##x; }
Every variable defined with this macro shows up double in the context list (VA view), also the accessor shows up double. But both point to the same location.
It does however not show up double in the definition bar.
In the members drop list it does not show up at all.