struct type { int i_ }; using cptr = const type *; // If I remove here 'const' then all works fine. int main() { type tp; cptr cp = &tp; cp-> // here autocomplete didn't work return 0; }
Hello! Please fix it if can.
Log in to post a comment.