Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Completion of pointers don't work in class definitions #9599

Closed
sean-mcmanus opened this issue Jul 18, 2022 · 1 comment
Closed

Completion of pointers don't work in class definitions #9599

sean-mcmanus opened this issue Jul 18, 2022 · 1 comment
Labels
bug Feature: Auto-complete fixed Check the Milestone for the release in which the fix is or will be available. Language Service Works in VS So we'd need to fix it for VS Code to reach parity.
Milestone

Comments

@sean-mcmanus
Copy link
Collaborator

sean-mcmanus commented Jul 18, 2022

Environment

  • OS and Version:
  • VS Code Version:
  • C/C++ Extension Version:
  • Other extensions you installed (and if the issue persists after disabling them):
  • If using SSH remote, specify OS of remote machine:
  • A clear and concise description of what the bug is, including information about the workspace (i.e. is the workspace a single project or multiple projects, size of the project, etc).

Bug Summary and Steps to Reproduce

See #9598

Expected behavior

No response

Code sample and Logs

struct foo1
{
    int b;
};


struct foo2 {
int func()
{
    foo1 *f1;
    f1. // completion fails
}
};

int func2()
{
    foo1 *f1;
    f1. // completion works
}

Screenshots

No response

Additional context

No response

@sean-mcmanus sean-mcmanus added bug Language Service Feature: Auto-complete Works in VS So we'd need to fix it for VS Code to reach parity. labels Jul 18, 2022
@sean-mcmanus sean-mcmanus added this to the 1.12 milestone Jul 18, 2022
@sean-mcmanus sean-mcmanus self-assigned this Jul 19, 2022
@sean-mcmanus sean-mcmanus removed their assignment Jul 20, 2022
@sean-mcmanus sean-mcmanus modified the milestones: 1.12, 1.12.0 Jul 20, 2022
@sean-mcmanus sean-mcmanus added the fixed Check the Milestone for the release in which the fix is or will be available. label Jul 25, 2022
@sean-mcmanus
Copy link
Collaborator Author

Fixed with 1.12.0 (pre-release): https://github.com/microsoft/vscode-cpptools/releases/tag/v1.12.0

@github-actions github-actions bot locked and limited conversation to collaborators Sep 12, 2022
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
bug Feature: Auto-complete fixed Check the Milestone for the release in which the fix is or will be available. Language Service Works in VS So we'd need to fix it for VS Code to reach parity.
Projects
None yet
Development

No branches or pull requests

1 participant