We've got this macro in our code that essentially converts a pointer to a reference. As far as Visual Assist is concerned it is defined like so in StdAfx.h:
#define mustDeref(x) (*(x))
However if you type this
UObject* Obj;
mustDeref(Obj).
then we don't get the member listbox. The listbox still seems to show up in other cases when macros are used so I'm wondering if this is a bug?
I'm on build 1640 btw.