When I document a method with the inline keyword, the return type appears without the inline keyword (which is what we want). But if the inline keyword is replaced by a macro, then the macro appears in front of the return type. Since Visual Assist already knows that the macro expands to inline it would be nice that it automatically removes it in the return type.
#define MY_INLINE inline
// When trying to document this function, Visual Assist will fill
// the return type parameter as: MY_INLINE void instead of just void
MY_INLINE void SomeFunc()
{
}