When you type 'A->', the member suggestion box pops up after you type '->', but I have a class which declares the '->' operator as private:
private:
MyClass* operator ->()
{
return nullptr;
}
I would like VAX to detect when that operator is marked as private, and to not show the suggestion box.
The reason I want this, is because I implement alternative syntax with the ->* operator:
MyClass& operator ->*(const ANSICHAR* PropertyName)
{
...
}
So, as an alternative syntax, I will be typing:
A->*"Member"->*"Member2"
The suggestion box popping up everytime I type '->' really messes with the flow of this syntax though.