Replies: 1 comment 4 replies
-
It works for me. Can you provide more repro details? What is the type of root? class CC
{
public:
int b;
};
int main()
{
CC *cc;
cc.; // completes .b to ->b
return 0;
} |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
According to #862, the autoconversion has been completed. Yet I have v1.10.8 but I can't find how to enable the autoconversion.


When I type ".", there is no autocompletion list:
When I type "->":
I've gone through the C/C++ settings but haven't found any related items. The "IntelliSenseEngine" is set to "default".
Any help would be appreciated!
Beta Was this translation helpful? Give feedback.
All reactions